@charset "UTF-8";
/* フォント */
:root {
	--ark-font_family: 'Roboto', 'BIZ UDPGothic', sans-serif;
}

/* 段落 */
:where(.c-postContent:lang(ja)) p {
	text-align: justify;
	line-break: strict;
	word-break: normal;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

/* 行間 */
:root {
	--ark-mt: 2rem;
	--ark-mt--s: 1rem;
	--ark-mt--m: 1.5em;
	--ark-mt--h: 2.5em;
}
@media not all and (min-width: 600px) {
	:root {
		--ark-mt: 1.5rem;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	--ark-mt: var(--ark-mt--m);
}

.p-entry__content > * {
	--ark-mt: var(--ark-mt--m);
}

/* 改行 */
@media (min-width: 600px) {
	br.sp {
		display: none;
	}
}
@media (min-width: 1000px) {
	br.tb {
		display: none;
	}
}
@media not all and (min-width: 1000px) {
	br.pc {
		display: none;
	}
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
}

@media not all and (min-width: 600px) {
	h2 {
		font-size: 1.25em;
	}
}

@media not all and (min-width: 600px) {
	h3 {
		font-size: 1.125em;
	}
}

@media not all and (min-width: 600px) {
	h4 {
		font-size: 1.125em;
	}
}

/* コンテンツボディ*/
.l-content__body:is([data-sidebar=off] body.page *) {
	margin: 0 auto;
}
.l-content__body:is([data-sidebar=on] *) {
	margin: 3rem auto;
}
@media not all and (min-width: 600px) {
	.l-content__body:is([data-sidebar=on] *) {
		margin: 2rem auto;
	}
}

/* ボックスシャドウ */
:root {
	--box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05), 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
	--box-shadow--hover: 1px 4px 15px -1px rgba(0, 0, 0, 0.3);
}

/* フェードイン */
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fade-in {
	opacity: 0;
}
.fade-in.fired {
	-webkit-animation: fadeIn 0.6s ease-out forwards;
	        animation: fadeIn 0.6s ease-out forwards;
}

/* フェードアップ */
@-webkit-keyframes fadeUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		        transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		        transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
.fade-up {
	opacity: 0;
}
.fade-up.fired {
	-webkit-animation: fadeUp 0.6s ease-out forwards;
	        animation: fadeUp 0.6s ease-out forwards;
}

/* アイコンバウンス */
@-webkit-keyframes IconBounce {
	0% {
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
	}
	25% {
		-webkit-transform: translateY(-12px) scale(1.06, 0.96);
		        transform: translateY(-12px) scale(1.06, 0.96);
	}
	55% {
		-webkit-transform: translateY(0) scale(0.96, 1.04);
		        transform: translateY(0) scale(0.96, 1.04);
	}
	100% {
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
	}
}
@keyframes IconBounce {
	0% {
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
	}
	25% {
		-webkit-transform: translateY(-12px) scale(1.06, 0.96);
		        transform: translateY(-12px) scale(1.06, 0.96);
	}
	55% {
		-webkit-transform: translateY(0) scale(0.96, 1.04);
		        transform: translateY(0) scale(0.96, 1.04);
	}
	100% {
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
	}
}
/* 段落スタイル */
p.is-style-info, p.is-style-announce, p.is-style-check, p.is-style-alert, p.is-style-memo {
	border-width: 1px;
	border-style: solid;
	border-radius: 6px;
	line-height: 1.6;
	padding: 1em 1em 1em 4.75em;
	position: relative;
}
@media not all and (min-width: 600px) {
	p.is-style-info, p.is-style-announce, p.is-style-check, p.is-style-alert, p.is-style-memo {
		padding: 0.75em 0.75em 0.75em 4em;
	}
}
p.is-style-info::before, p.is-style-announce::before, p.is-style-check::before, p.is-style-alert::before, p.is-style-memo::before {
	content: "";
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	width: 2.5em;
	height: 2.5em;
	position: absolute;
	top: 50%;
	left: 0.75em;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	p.is-style-info::before, p.is-style-announce::before, p.is-style-check::before, p.is-style-alert::before, p.is-style-memo::before {
		width: 2em;
		height: 2em;
		left: 0.5em;
	}
}
p.is-style-info::after, p.is-style-announce::after, p.is-style-check::after, p.is-style-alert::after, p.is-style-memo::after {
	content: "";
	display: block;
	border-right: 2px dashed;
	width: 0;
	height: 50%;
	opacity: 0.4;
	position: absolute;
	top: 50%;
	left: 3.75em;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	p.is-style-info::after, p.is-style-announce::after, p.is-style-check::after, p.is-style-alert::after, p.is-style-memo::after {
		left: 3em;
	}
}
p.is-style-info {
	background-color: #f1f7fb;
	border-color: #4d9dcb;
}
p.is-style-info::before {
	background-image: url(../img/p-info.svg);
}
p.is-style-info::after {
	border-color: #4d9dcb;
}
p.is-style-announce {
	background-color: #fffaed;
	border-color: #ffbc05;
}
p.is-style-announce::before {
	background-image: url(../img/p-announce.svg);
}
p.is-style-announce::after {
	border-color: #ffbc05;
}
p.is-style-check {
	background-color: #f2fcf6;
	border-color: #29c475;
}
p.is-style-check::before {
	background-image: url(../img/p-check.svg);
}
p.is-style-check::after {
	border-color: #29c475;
}
p.is-style-alert {
	background-color: #fff6f3;
	border-color: #ff7f57;
}
p.is-style-alert::before {
	background-image: url(../img/p-alert.svg);
}
p.is-style-alert::after {
	border-color: #ff7f57;
}
p.is-style-memo {
	background-color: #f4f5f6;
	border-color: #98a6ae;
}
p.is-style-memo::before {
	background-image: url(../img/p-memo.svg);
}
p.is-style-memo::after {
	border-color: #98a6ae;
}

/* テーブル */
.wp-block-table {
	--ark-color--border--table: #ccc;
}
.wp-block-table th {
	color: #135072;
	background-color: #f1f7fb;
	font-weight: 700;
}
.wp-block-table td {
	background-color: #fff;
}

/* マーカー */
body {
	--arkb-marker-color: #ffebd2;
	--arkb-marker-start: 0.75em;
	--arkb-marker-style: linear-gradient(
		transparent var(--arkb-marker-start),
		var(--arkb-marker-color) 0
	);
}

/* セクション */
.ark-block-section {
	--arkb-padding: 4rem 0;
	overflow: clip;
}
@media not all and (min-width: 1000px) {
	.ark-block-section {
		--arkb-padding: 3rem 0;
	}
}
@media not all and (min-width: 600px) {
	.ark-block-section {
		--arkb-padding: 2rem 0;
	}
}
.ark-block-section.-py-6 {
	--arkb-padding: 6rem 0;
}
@media not all and (min-width: 1000px) {
	.ark-block-section.-py-6 {
		--arkb-padding: 5rem 0;
	}
}
@media not all and (min-width: 600px) {
	.ark-block-section.-py-6 {
		--arkb-padding: 4rem 0;
	}
}
.ark-block-section.-py-5 {
	--arkb-padding: 5rem 0;
}
@media not all and (min-width: 1000px) {
	.ark-block-section.-py-5 {
		--arkb-padding: 4rem 0;
	}
}
@media not all and (min-width: 600px) {
	.ark-block-section.-py-5 {
		--arkb-padding: 3rem 0;
	}
}
.ark-block-section.-py-3 {
	--arkb-padding: 3rem 0;
}
@media not all and (min-width: 1000px) {
	.ark-block-section.-py-3 {
		--arkb-padding: 2rem 0;
	}
}
.ark-block-section.-py-2 {
	--arkb-padding: 2rem 0;
}
.ark-block-section.-py-0 {
	--arkb-padding: 0;
}

/* セクション見出し */
.ark-block-heading .ark-block-heading__main {
	color: #135072;
	font-size: 2.25em;
}
@media not all and (min-width: 1000px) {
	.ark-block-heading .ark-block-heading__main {
		font-size: 2em;
	}
}
@media not all and (min-width: 600px) {
	.ark-block-heading .ark-block-heading__main {
		font-size: 1.375em;
	}
}
.ark-block-heading .ark-block-heading__main .has-inline-color {
	font-size: 1.25em;
}
.ark-block-heading .ark-block-heading__sub {
	color: #2085be;
	font-size: 1.5em;
	font-weight: 400;
	margin-bottom: 0.5rem;
}
@media not all and (min-width: 600px) {
	.ark-block-heading .ark-block-heading__sub {
		font-size: 1.125em;
	}
}
.ark-block-heading .ark-block-heading__line {
	margin-top: 0.5em !important;
}
@media not all and (min-width: 600px) {
	.ark-block-heading .ark-block-heading__line {
		margin-top: 0.25em !important;
	}
}
.ark-block-heading .ark-block-heading__line:before {
	background-color: unset;
	background-image: url(../img/heading-line.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 46px;
	height: 6px;
}
@media not all and (min-width: 600px) {
	.ark-block-heading .ark-block-heading__line:before {
		width: 31px;
		height: 4px;
	}
}

/* 見出し */
:where(.c-postContent, .ark-block-section__bodyInner) > h2.wp-block-heading {
	color: #135072;
	background-color: #f1f7fb;
	border-width: 4px 0 4px 0;
	border-style: solid;
	border-color: #e9f3f9;
	padding: 0.25em 0.5em;
}
:where(.c-postContent, .ark-block-section__bodyInner) > h3.wp-block-heading {
	color: #135072;
	border-bottom: 1px solid #ccc;
	padding: 0.25em 0.6em;
	position: relative;
}
:where(.c-postContent, .ark-block-section__bodyInner) > h3.wp-block-heading:before {
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2085be), color-stop(50%, #1d65b1));
	background-image: linear-gradient(180deg, #2085be 50%, #1d65b1 50%);
	width: 5px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	:where(.c-postContent, .ark-block-section__bodyInner) > h3.wp-block-heading:before {
		width: 4px;
	}
}
:where(.c-postContent, .ark-block-section__bodyInner) > h4.wp-block-heading {
	color: #2085be;
}

/* 画像 */
.wp-block-image a {
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.wp-block-image a:hover {
	opacity: unset;
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.wp-block-image figcaption {
	font-size: 1rem;
}

/* ボタン */
.ark-block-button .ark-block-button__link {
	border-radius: 6px;
	padding: 1em 3.5em 1em 2em;
}
@media not all and (min-width: 600px) {
	.ark-block-button .ark-block-button__link {
		padding: 0.75em 3em 0.75em 2.5em;
	}
}
.ark-block-button .ark-block-button__text {
	font-weight: 700;
}
@media (min-width: 1000px) {
	.ark-block-button .ark-block-button__text {
		font-size: 1.125rem;
	}
}
.ark-block-button .ark-block-button__icon.-right {
	outline: 1px solid currentColor;
	border-radius: 9999px;
	padding: 3px;
	-webkit-transform: scale(1.25);
	        transform: scale(1.25);
	position: absolute;
	right: 24px;
}
@media not all and (min-width: 600px) {
	.ark-block-button .ark-block-button__icon.-right {
		right: 20px;
	}
}
.ark-block-button.icon-button {
	--icon-display: none;
	--icon-mask: none;
	--icon-size: 1.75em;
}
.ark-block-button.icon-button .ark-block-button__link {
	padding: 1em 3.5em 1em 1em;
}
@media not all and (min-width: 600px) {
	.ark-block-button.icon-button .ark-block-button__link {
		padding: 0.75em 3em 0.75em 0.75em;
	}
}
.ark-block-button.icon-button .ark-block-button__link::before {
	content: "";
	background-color: currentColor;
	display: var(--icon-display);
	width: var(--icon-size);
	height: var(--icon-size);
	-webkit-mask-image: var(--icon-mask);
	        mask-image: var(--icon-mask);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	vertical-align: middle;
	inset: unset;
	opacity: unset;
	position: inherit;
	-webkit-transition: background-color 0.25s;
	transition: background-color 0.25s;
	visibility: visible;
	margin-right: 4px;
}
.ark-block-button.icon-button.firm {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M94.62-136.92v-700h379.99v160h390.77v540H94.62Zm59.99-60h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm160 480h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm160 480h330.78v-420H474.61v100h87.7v60h-87.7v100h87.7v60h-87.7v100Zm175.39-260v-60h60v60h-60Zm0 160v-60h60v60h-60Z"/></svg>');
}
.ark-block-button.icon-button.message {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M250-410h300v-60H250v60Zm0-120h460v-60H250v60Zm0-120h460v-60H250v60ZM100-118.46v-669.23Q100-818 121-839q21-21 51.31-21h615.38Q818-860 839-839q21 21 21 51.31v455.38Q860-302 839-281q-21 21-51.31 21H241.54L100-118.46ZM216-320h571.69q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46v-455.38q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H172.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v523.08L216-320Zm-56 0v-480 480Z"/></svg>');
}
.ark-block-button.icon-button.numbers {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M510-510h288.77q-11.54-115.77-92.27-196.69-80.73-80.93-196.5-92.08V-510Zm-60 348.77v-637.54q-123.69 11.15-206.85 102.42Q160-605.08 160-480t83.15 216.35Q326.31-172.38 450-161.23Zm60 0Q625.77-171.77 706.81-253q81.04-81.23 91.96-197H510v288.77ZM480-480Zm.07 380q-78.84 0-148.21-29.92t-120.68-81.21q-51.31-51.29-81.25-120.63Q100-401.1 100-479.93q0-78.84 29.92-148.21t81.21-120.68q51.29-51.31 120.63-81.25Q401.1-860 479.93-860q78.84 0 147.88 29.96 69.04 29.96 120.65 81.58 51.62 51.61 81.58 120.61Q860-558.86 860-479.88q0 78.03-29.92 147.33-29.92 69.29-81.21 121.02-51.29 51.73-120.63 81.63T480.07-100Z"/></svg>');
}
.ark-block-button.icon-button.interview {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M71.93-187.69v-88.93q0-30.92 15.96-55.19 15.96-24.27 42.63-37.76 57.02-27.89 114.67-43.01 57.66-15.11 126.73-15.11 69.08 0 126.73 15.11 57.66 15.12 114.68 43.01 26.67 13.49 42.63 37.76 15.96 24.27 15.96 55.19v88.93H71.93Zm679.99 0v-93.85q0-39.38-19.28-75.07-19.29-35.68-54.72-61.23 40.23 6 76.39 18.57 36.15 12.58 69 29.73 31 16.54 47.88 38.99 16.88 22.44 16.88 49.01v93.85H751.92Zm-380-304.62q-57.75 0-98.87-41.12-41.12-41.13-41.12-98.88 0-57.75 41.12-98.87 41.12-41.13 98.87-41.13 57.75 0 98.88 41.13 41.12 41.12 41.12 98.87 0 57.75-41.12 98.88-41.13 41.12-98.88 41.12Zm345.38-140q0 57.75-41.12 98.88-41.12 41.12-98.87 41.12-6.77 0-17.23-1.54-10.47-1.54-17.23-3.38 23.66-28.45 36.37-63.12 12.7-34.67 12.7-72 0-37.34-12.96-71.73-12.96-34.38-36.11-63.3 8.61-3.08 17.23-4 8.61-.93 17.23-.93 57.75 0 98.87 41.13 41.12 41.12 41.12 98.87ZM131.92-247.69h480v-28.93q0-12.53-6.27-22.3-6.26-9.77-19.88-17.08-49.38-25.46-101.69-38.58-52.31-13.11-112.16-13.11-59.84 0-112.15 13.11-52.31 13.12-101.69 38.58-13.62 7.31-19.89 17.08-6.27 9.77-6.27 22.3v28.93Zm240-304.62q33 0 56.5-23.5t23.5-56.5q0-33-23.5-56.5t-56.5-23.5q-33 0-56.5 23.5t-23.5 56.5q0 33 23.5 56.5t56.5 23.5Zm0 304.62Zm0-384.62Z"/></svg>');
}
.ark-block-button.icon-button.requirements {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M327.69-453.85h304.62v-60H327.69v60Zm0 115.39h304.62v-60H327.69v60Zm0 115.38h184.62v-60H327.69v60ZM252.31-100Q222-100 201-121q-21-21-21-51.31v-615.38Q180-818 201-839q21-21 51.31-21H570l210 210v477.69Q780-142 759-121q-21 21-51.31 21H252.31ZM540-620v-180H252.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v615.38q0 4.62 3.85 8.46 3.84 3.85 8.46 3.85h455.38q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46V-620H540ZM240-800v180-180V-160v-640Z"/></svg>');
}
.ark-block-button.icon-button.entry {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z"/></svg>');
	--icon-size: 1.5em;
}
.ark-block-button.is-btn-fill.entry .ark-block-button__link {
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
}
.ark-block-button.is-btn-outline .ark-block-button__link {
	background-color: #fff;
	-webkit-box-shadow: inset 0 0 0 1px #aaa;
	        box-shadow: inset 0 0 0 1px #aaa;
}
.ark-block-button[data-hover=bright] .ark-block-button__link {
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.ark-block-button[data-hover=bright] .ark-block-button__link:hover {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.ark-block-button[data-hover=bright]:not(.icon-button) .ark-block-button__link::before {
	content: none;
}

/* リッチカラム */
.ark-block-columns .ark-block-column[data-arkb-link], .ark-block-columns .ark-block-column[data-arkb-linkbox] {
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.ark-block-columns .ark-block-column[data-arkb-link]:hover, .ark-block-columns .ark-block-column[data-arkb-linkbox]:hover {
	opacity: unset;
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.ark-block-columns .ark-block-column[data-arkb-link] a + *, .ark-block-columns .ark-block-column[data-arkb-linkbox] a + * {
	margin-top: 0;
}

/* パンくずリスト */
@media (min-width: 1000px) {
	.p-breadcrumb {
		padding: 12px 0;
	}
}
.p-breadcrumb .p-breadcrumb__list {
	display: block;
}
.p-breadcrumb .p-breadcrumb__item {
	display: inline;
	padding-right: 10px;
	margin-right: 10px;
}
.p-breadcrumb .p-breadcrumb__item::after {
	display: inline-block;
}
.p-breadcrumb .p-breadcrumb__icon {
	color: #2085be;
	font-size: 16px;
	vertical-align: middle;
	-webkit-transform: translateY(-1px);
	        transform: translateY(-1px);
}
@media not all and (min-width: 600px) {
	.p-breadcrumb .p-breadcrumb__icon {
		font-size: 14px;
	}
}
.p-breadcrumb .p-breadcrumb__text {
	font-size: 14px;
	display: inline !important;
	white-space: wrap;
}
@media not all and (min-width: 600px) {
	.p-breadcrumb .p-breadcrumb__text {
		font-size: 12px;
	}
}

/* 汎用モーダル */
dialog.pw-modal {
	background: transparent;
	border: none;
	padding: 0;
	max-width: unset;
	width: 100vw;
	height: 100dvh;
	z-index: 999999;
}
dialog.pw-modal::-ms-backdrop {
	background: transparent;
}
dialog.pw-modal::backdrop {
	background: transparent;
}

.pw-modal-trigger {
	cursor: pointer;
}

.pw-modal__scrim {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 0;
}

.pw-modal__inner {
	position: fixed;
	inset: 0;
	display: grid;
	place-items: center;
	padding: clamp(16px, 4vw, 40px);
	z-index: 1;
}

.pw-modal__body {
	max-width: min(1000px, 60vw);
	max-height: 90svh;
	background: #fff;
	overflow-y: auto;
	-ms-scroll-chaining: none;
	    overscroll-behavior: contain;
	-webkit-transform: scale(0.9) translateY(10%);
	        transform: scale(0.9) translateY(10%);
	opacity: 0;
	-webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: transform 0.25s, opacity 0.25s;
	transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
}
@media not all and (min-width: 1000px) {
	.pw-modal__body {
		max-width: min(900px, 92vw);
	}
}
.pw-modal__body.is-open {
	-webkit-transform: scale(1);
	        transform: scale(1);
	opacity: 1;
}

.pw-modal__close {
	position: absolute;
	top: calc(env(safe-area-inset-top) + 16px);
	right: calc(env(safe-area-inset-right) + 16px);
	display: grid;
	place-items: center;
	gap: 0.5rem;
	cursor: pointer;
	color: #fff;
	background: transparent;
	font-size: 0.875rem;
	line-height: 1;
	border: none;
	padding: 0.5rem;
	z-index: 2;
}
.pw-modal__close svg {
	width: 1.5rem;
	height: 1.5rem;
}

html:has(#appModal[open]),
body:has(#appModal[open]) {
	overflow: hidden;
}

/* ヘッダー */
.l-header {
	background: rgba(255, 255, 255, 0.9);
}
.l-header[data-btns=rr-rl][data-logo=left] .l-header__body {
	grid-template-columns: 1fr auto -webkit-min-content;
	grid-template-columns: 1fr auto min-content;
	grid-template-rows: auto;
	grid-template-areas: "left right menu";
}
@media not all and (min-width: 1000px) {
	.l-header[data-btns=rr-rl][data-logo=left] .l-header__body {
		grid-template-columns: 1fr -webkit-min-content;
		grid-template-columns: 1fr min-content;
		grid-template-areas: "left menu";
		gap: 0.25rem;
	}
}
.l-header .l-header__body {
	--ark-padding--container: min(24px, 4vw);
	max-width: unset;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
@media (min-width: 1000px) {
	.l-header .l-header__body {
		padding-top: 0;
		padding-right: 0;
		padding-bottom: 0;
	}
}
.l-header .l-header__center {
	grid-area: left;
	padding: 16px 0;
}
@media (min-width: 1000px) and (max-width: 1200px) {
	.l-header .l-header__center {
		padding: 8px 0;
	}
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__center {
		padding: 4px 0;
	}
}
.l-header .l-header__right {
	grid-area: right;
	gap: 12px;
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__logo {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
.l-header .c-headLogo {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem;
}
@media (min-width: 1000px) and (max-width: 1200px) {
	.l-header .c-headLogo {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		gap: 0;
	}
}
.l-header .c-headLogo__text {
	font-size: 14px;
	line-height: 2;
	max-width: 15.5em;
}
@media (min-width: 1000px) and (max-width: 1200px) {
	.l-header .c-headLogo__text {
		line-height: 1.3;
		max-width: unset;
		margin-bottom: 0.75rem;
	}
}
@media not all and (min-width: 600px) {
	.l-header .c-headLogo__text {
		font-size: 12px;
	}
}
@media not all and (min-width: 450px) {
	.l-header .c-headLogo__text {
		font-size: 11px;
	}
}
@media (min-width: 1000px) {
	.l-header .c-headLogo__name {
		padding-right: 0.5em;
	}
}
.l-header .c-headLogo__recruit {
	color: #135072;
	background-color: #e9f3f9;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 4px 6px;
}
@media not all and (min-width: 450px) {
	.l-header .c-headLogo__recruit {
		font-size: 12px;
	}
}
.l-header .c-headLogo__img {
	--ark-logo_size--pc: 56px;
	height: var(--ark-logo_size--pc);
}
@media (min-width: 1000px) and (max-width: 1200px) {
	.l-header .c-headLogo__img {
		--ark-logo_size--pc: 48px;
	}
}
@media not all and (min-width: 1000px) {
	.l-header .c-headLogo__img {
		height: var(--ark-logo_size--sp);
	}
}

/* Gナビ */
.c-gnav {
	font-size: 1rem;
	gap: 0.25rem;
}
@media not all and (min-width: 1300px) {
	.c-gnav {
		font-size: 0.9rem;
	}
}
.c-gnav > .menu-item {
	border-radius: 8px;
}
.c-gnav > .menu-item:not(.entry) {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}
.c-gnav > .menu-item.entry {
	margin-left: 0.875rem;
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.c-gnav > .menu-item.entry:focus, .c-gnav > .menu-item.entry:hover {
	background-color: transparent;
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.c-gnav > .menu-item.entry .c-gnav__a {
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem;
	padding: 0.5em 1.5em 1em;
}
.c-gnav > .menu-item.entry .c-gnav__a::before {
	content: "";
	background: currentColor;
	display: inline-block;
	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z"/></svg>');
	        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z"/></svg>');
	-webkit-mask-position: center center;
	        mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	        mask-size: contain;
	width: 1.25em;
	height: 1.25em;
}
.c-gnav > .menu-item > .c-gnav__a {
	padding: 1em 0.625em;
}
.c-gnav > .menu-item .__subText {
	color: #2085be;
	font-size: 14px;
	opacity: 0.8;
	top: 8px;
}
.c-gnav .sub-menu {
	color: #333;
	background-color: #fff;
}
.c-gnav .sub-menu.c-gnav__depth1 {
	--ark-nav-padding--Y: 0.6rem;
	--ark-nav-padding--R: 1rem;
	--ark-nav-padding--L: 0.5rem;
	border-radius: 8px;
	-webkit-box-shadow: unset;
	        box-shadow: unset;
	-webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.05)) drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.1));
	        filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.05)) drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.1));
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 180px;
	left: 0;
	-webkit-transform: unset;
	        transform: unset;
	padding: 0.5rem;
}
.c-gnav .sub-menu.c-gnav__depth1::before {
	content: none;
}
.c-gnav .sub-menu > .menu-item {
	--icon-display: none;
	--icon-mask: none;
	--icon-size: 1.5em;
	border-radius: 8px;
	width: 100%;
	white-space: nowrap;
	position: relative;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
.c-gnav .sub-menu > .menu-item:not(:last-child) {
	border-bottom: none;
}
.c-gnav .sub-menu > .menu-item:focus, .c-gnav .sub-menu > .menu-item:hover {
	color: #2085be;
	background-color: #f1f7fb;
}
.c-gnav .sub-menu .c-gnav__a {
	font-size: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.25rem;
}
@media not all and (min-width: 1300px) {
	.c-gnav .sub-menu .c-gnav__a {
		font-size: 0.9rem;
	}
}
.c-gnav .sub-menu .c-gnav__a::before {
	content: "";
	background-color: #2085be;
	display: var(--icon-display);
	width: var(--icon-size);
	height: var(--icon-size);
	-webkit-mask-image: var(--icon-mask);
	        mask-image: var(--icon-mask);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	position: inherit;
	top: unset;
	left: unset;
	z-index: inherit;
}
.c-gnav .sub-menu .c-gnav__a:hover::before {
	background-color: #2085be;
}

/* ドロワーナビ */
.l-header__drawerBtn .c-iconBtn {
	color: #1d65b1;
}
.l-header__drawerBtn .c-iconBtn::after {
	content: "MENU";
	font-size: 10px;
	font-weight: 400;
}
[data-drawer=opened] .l-header__drawerBtn .c-iconBtn::after {
	content: "CLOSE";
}
.l-header__drawerBtn .c-iconBtn__icon {
	font-size: 30px;
	width: 30px;
	height: 30px;
}

[data-header-above] .p-drawerUnderlayer {
	background: rgba(32, 133, 190, 0.95) !important;
}

.p-drawer {
	--ark-menulist_border: 1px solid #90c2df;
	--ark-nav-padding--Y: 0.875rem;
	font-size: 1rem;
}
.p-drawer .c-drawerNav {
	border-top: none;
	border-bottom: none;
}
.p-drawer .c-drawerNav__li {
	--icon-display: none;
	--icon-mask: none;
	--icon-size: 1.5em;
}
.p-drawer .c-drawerNav__li .c-drawerNav__a {
	font-size: 1rem;
	font-weight: 700;
}
.p-drawer .c-drawerNav__li .c-drawerNav__a:hover {
	background-color: inherit;
}
.p-drawer .c-drawerNav__li > .c-drawerNav__a::before {
	content: "";
	background-color: currentColor;
	display: var(--icon-display);
	width: var(--icon-size);
	height: var(--icon-size);
	-webkit-mask-image: var(--icon-mask);
	        mask-image: var(--icon-mask);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	vertical-align: middle;
	-webkit-transform: translateY(-0.1em);
	        transform: translateY(-0.1em);
	margin-right: 6px;
}
.p-drawer .c-drawerNav__li.firm {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M94.62-136.92v-700h379.99v160h390.77v540H94.62Zm59.99-60h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm160 480h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm160 480h330.78v-420H474.61v100h87.7v60h-87.7v100h87.7v60h-87.7v100Zm175.39-260v-60h60v60h-60Zm0 160v-60h60v60h-60Z"/></svg>');
}
.p-drawer .c-drawerNav__li.message {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M250-410h300v-60H250v60Zm0-120h460v-60H250v60Zm0-120h460v-60H250v60ZM100-118.46v-669.23Q100-818 121-839q21-21 51.31-21h615.38Q818-860 839-839q21 21 21 51.31v455.38Q860-302 839-281q-21 21-51.31 21H241.54L100-118.46ZM216-320h571.69q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46v-455.38q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H172.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v523.08L216-320Zm-56 0v-480 480Z"/></svg>');
}
.p-drawer .c-drawerNav__li.interview {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M71.93-187.69v-88.93q0-30.92 15.96-55.19 15.96-24.27 42.63-37.76 57.02-27.89 114.67-43.01 57.66-15.11 126.73-15.11 69.08 0 126.73 15.11 57.66 15.12 114.68 43.01 26.67 13.49 42.63 37.76 15.96 24.27 15.96 55.19v88.93H71.93Zm679.99 0v-93.85q0-39.38-19.28-75.07-19.29-35.68-54.72-61.23 40.23 6 76.39 18.57 36.15 12.58 69 29.73 31 16.54 47.88 38.99 16.88 22.44 16.88 49.01v93.85H751.92Zm-380-304.62q-57.75 0-98.87-41.12-41.12-41.13-41.12-98.88 0-57.75 41.12-98.87 41.12-41.13 98.87-41.13 57.75 0 98.88 41.13 41.12 41.12 41.12 98.87 0 57.75-41.12 98.88-41.13 41.12-98.88 41.12Zm345.38-140q0 57.75-41.12 98.88-41.12 41.12-98.87 41.12-6.77 0-17.23-1.54-10.47-1.54-17.23-3.38 23.66-28.45 36.37-63.12 12.7-34.67 12.7-72 0-37.34-12.96-71.73-12.96-34.38-36.11-63.3 8.61-3.08 17.23-4 8.61-.93 17.23-.93 57.75 0 98.87 41.13 41.12 41.12 41.12 98.87ZM131.92-247.69h480v-28.93q0-12.53-6.27-22.3-6.26-9.77-19.88-17.08-49.38-25.46-101.69-38.58-52.31-13.11-112.16-13.11-59.84 0-112.15 13.11-52.31 13.12-101.69 38.58-13.62 7.31-19.89 17.08-6.27 9.77-6.27 22.3v28.93Zm240-304.62q33 0 56.5-23.5t23.5-56.5q0-33-23.5-56.5t-56.5-23.5q-33 0-56.5 23.5t-23.5 56.5q0 33 23.5 56.5t56.5 23.5Zm0 304.62Zm0-384.62Z"/></svg>');
}
.p-drawer .c-drawerNav__li.requirements {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M327.69-453.85h304.62v-60H327.69v60Zm0 115.39h304.62v-60H327.69v60Zm0 115.38h184.62v-60H327.69v60ZM252.31-100Q222-100 201-121q-21-21-21-51.31v-615.38Q180-818 201-839q21-21 51.31-21H570l210 210v477.69Q780-142 759-121q-21 21-51.31 21H252.31ZM540-620v-180H252.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v615.38q0 4.62 3.85 8.46 3.84 3.85 8.46 3.85h455.38q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46V-620H540ZM240-800v180-180V-160v-640Z"/></svg>');
}
.p-drawer .c-drawerNav__li.entry {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="currentColor"><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480V396.4c0-4 1.5-7.8 4.2-10.7L331.8 202.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8 17.7 316.6C7.1 311.3 .3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4z"/></svg>');
	--icon-size: 1.25em;
	margin-top: 1.5rem !important;
}
.p-drawer .c-drawerNav__li.entry .c-drawerNav__a {
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
	font-weight: 700;
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1rem;
}
.p-drawer .c-drawerNav__li .__subText {
	display: none;
}
.p-drawer .sub-menu.is-opened {
	border-top: 1px solid #90c2df;
}
.p-drawer .sub-menu > .menu-item {
	--icon-display: none;
	--icon-mask: none;
	--icon-size: 1.5em;
}
.p-drawer .sub-menu > .menu-item > .c-drawerNav__a::before {
	content: "";
	background-color: currentColor;
	display: var(--icon-display);
	width: var(--icon-size);
	height: var(--icon-size);
	-webkit-mask-image: var(--icon-mask);
	        mask-image: var(--icon-mask);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	vertical-align: middle;
	-webkit-transform: translateY(-0.1em);
	        transform: translateY(-0.1em);
	margin-right: 6px;
}
.p-drawer .sub-menu > .menu-item.numbers {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M510-510h288.77q-11.54-115.77-92.27-196.69-80.73-80.93-196.5-92.08V-510Zm-60 348.77v-637.54q-123.69 11.15-206.85 102.42Q160-605.08 160-480t83.15 216.35Q326.31-172.38 450-161.23Zm60 0Q625.77-171.77 706.81-253q81.04-81.23 91.96-197H510v288.77ZM480-480Zm.07 380q-78.84 0-148.21-29.92t-120.68-81.21q-51.31-51.29-81.25-120.63Q100-401.1 100-479.93q0-78.84 29.92-148.21t81.21-120.68q51.29-51.31 120.63-81.25Q401.1-860 479.93-860q78.84 0 147.88 29.96 69.04 29.96 120.65 81.58 51.62 51.61 81.58 120.61Q860-558.86 860-479.88q0 78.03-29.92 147.33-29.92 69.29-81.21 121.02-51.29 51.73-120.63 81.63T480.07-100Z"/></svg>');
}
.p-drawer .c-submenuToggleBtn::after {
	-webkit-box-shadow: unset;
	        box-shadow: unset;
}
.p-drawer .c-submenuToggleBtn:hover {
	outline: unset;
}

/* トップエリア */
.p-topArea {
	min-height: 200px;
	padding: 1rem 0;
}
@media not all and (min-width: 1000px) {
	.p-topArea {
		min-height: 150px;
	}
}
@media not all and (min-width: 600px) {
	.p-topArea {
		min-height: 100px;
	}
}
.p-topArea.c-filterLayer::after {
	content: "";
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.3)), color-stop(40%, #fff), color-stop(60%, #fff), to(rgba(255, 255, 255, 0.3)));
	background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, #fff 40%, #fff 60%, rgba(255, 255, 255, 0.3) 100%);
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.p-topArea .p-topArea__img {
	-o-object-position: top;
	   object-position: top;
}
.p-topArea .p-topArea__body {
	color: #333;
	text-shadow: unset;
}
.p-topArea .p-topArea__title {
	color: #135072;
}
.p-topArea .c-pageTitle__main {
	font-size: 2.5em;
	line-height: 1.5;
}
@media not all and (min-width: 1000px) {
	.p-topArea .c-pageTitle__main {
		font-size: 2em;
	}
}
@media not all and (min-width: 600px) {
	.p-topArea .c-pageTitle__main {
		font-size: 1.5em;
	}
}
.p-topArea .c-pageTitle__sub {
	font-size: 1.125rem;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.1em;
	margin-top: 0 !important;
}
@media not all and (min-width: 600px) {
	.p-topArea .c-pageTitle__sub {
		font-size: 1rem;
	}
}
.p-topArea .c-pageTitle__sub::before, .p-topArea .c-pageTitle__sub::after {
	content: none;
}
.p-topArea .p-topArea__excerpt {
	font-size: 1rem;
	line-height: 1.8;
}
@media (min-width: 1000px) {
	.p-topArea .p-topArea__excerpt {
		font-size: 1.125rem;
		line-height: 2;
	}
}

/* リードセクション */
.ark-block-section .lead-text {
	text-align: center;
}
@media (min-width: 1000px) {
	.ark-block-section .lead-text {
		font-size: 1.125rem;
		line-height: 2;
	}
}

/* セクションヘッダー */
.section-head-columns {
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 4rem;
	--arkb-gap--y: 1.5rem;
}
.section-head-columns .heading-col {
	--arkb-clmn-w--pc: 33.33%;
}
.section-head-columns .text-col {
	--arkb-clmn-w--pc: 66.66%;
	-ms-flex-item-align: center;
	    align-self: center;
}
@media (min-width: 1000px) {
	.section-head-columns .head-text {
		font-size: 1.125rem;
	}
}
@media (min-width: 1000px) {
	.section-head-columns + * {
		margin-top: 3rem;
	}
}

/* トップ | Hero */
section.hero .ark-block-section__body {
	max-width: unset;
}
section.hero .ark-block-section__bodyInner > :not(:first-child) {
	margin-top: 0;
}
section.hero .hero-catch-container {
	padding: 1.5rem 0;
	z-index: 1;
}
@media (min-width: 1000px) {
	section.hero .hero-catch-container {
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
		position: absolute;
		left: 0;
		bottom: 0;
		padding: 2rem 3rem;
	}
}
section.hero h2.hero-catch {
	color: #135072;
	font-size: 3rem;
}
@media (min-width: 1000px) {
	section.hero h2.hero-catch {
		line-height: 2.2;
	}
}
@media (min-width: 1150px) {
	section.hero h2.hero-catch {
		line-height: 2;
	}
}
@media not all and (min-width: 1300px) {
	section.hero h2.hero-catch {
		font-size: 2.5rem;
	}
}
@media not all and (min-width: 1150px) {
	section.hero h2.hero-catch {
		font-size: 2rem;
	}
}
@media not all and (min-width: 600px) {
	section.hero h2.hero-catch {
		font-size: 1.5rem;
	}
}
@media (min-width: 1000px) {
	section.hero h2.hero-catch .arkb-fz {
		background-color: rgba(255, 255, 255, 0.9);
		padding: 0.75rem 1rem;
	}
}
section.hero h2.hero-catch .arkb-fz-l {
	font-size: 1em !important;
	margin-left: 1em;
}
@media not all and (min-width: 1150px) {
	section.hero h2.hero-catch .arkb-fz-l {
		margin-left: 0;
	}
}
section.hero .hero-buttons {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 50%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 1.5rem;
	margin-top: 0;
}
@media not all and (min-width: 1000px) {
	section.hero .hero-buttons {
		position: absolute;
		right: 2rem;
		bottom: 2rem;
		z-index: 1;
	}
}
@media not all and (min-width: 600px) {
	section.hero .hero-buttons {
		--arkb-gap--x: 1rem;
		--arkb-gap--y: 1rem;
		right: 1rem;
		bottom: 1rem;
	}
}
section.hero .hero-button {
	aspect-ratio: 1/1;
	color: #fff;
	border-radius: 9999px;
	overflow: hidden;
	outline: 1px solid #fff;
	outline-offset: -5px;
	width: 170px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.5em;
	padding: 2em;
}
@media not all and (min-width: 1150px) {
	section.hero .hero-button {
		width: 150px;
	}
}
@media not all and (min-width: 600px) {
	section.hero .hero-button {
		width: 100px;
		padding: 1.5em;
	}
}
section.hero .hero-button.requirements {
	background: -webkit-gradient(linear, left top, left bottom, from(#2085be), to(#1d65b1));
	background: linear-gradient(180deg, #2085be, #1d65b1);
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
section.hero .hero-button.entry {
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
section.hero .hero-button-icon {
	margin-top: -1em !important;
}
@media not all and (min-width: 600px) {
	section.hero .hero-button-icon {
		--arkb-icon-size: 1.5em !important;
		margin-top: -0.5em !important;
	}
}
section.hero .hero-button-icon.entry .ark-block-icon__frame {
	padding: 4px;
}
@media not all and (min-width: 600px) {
	section.hero .hero-button-icon.entry .ark-block-icon__frame {
		padding: 2px;
	}
}
section.hero .hero-button-text {
	font-weight: 700;
	line-height: 1.3;
	white-space: nowrap;
	margin-top: 0;
}
@media (min-width: 1150px) {
	section.hero .hero-button-text {
		font-size: 1.25rem;
	}
}
section.hero .hero-slider {
	--arkb-padding: 0;
	pointer-events: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	position: relative;
	z-index: 0;
}
section.hero .hero-slider .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	        transition-timing-function: linear !important;
}
section.hero .hero-slider .hero-slide-image {
	border-radius: 10px;
	overflow: hidden;
}
section.hero .hero-slider .hero-slide-image img {
	width: 100%;
}
section.hero .hero-slider .hero-slide-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 24px;
	aspect-ratio: 4/3;
}
@media not all and (min-width: 1000px) {
	section.hero .hero-slider .hero-slide-grid {
		gap: 12px;
	}
}
section.hero .hero-slider .hero-slide-grid.-grid-01 {
	grid-template-areas: "a a a b b" "c c d d d";
}
section.hero .hero-slider .hero-slide-grid.-grid-02 {
	grid-template-areas: "a a b b b" "c c c d d";
}
section.hero .hero-slider .hero-slide-grid > :not(:first-child) {
	margin-top: 0;
}
section.hero .hero-slider .hero-slide-gridItem.-pos-a {
	grid-area: a;
}
section.hero .hero-slider .hero-slide-gridItem.-pos-b {
	grid-area: b;
}
section.hero .hero-slider .hero-slide-gridItem.-pos-c {
	grid-area: c;
}
section.hero .hero-slider .hero-slide-gridItem.-pos-d {
	grid-area: d;
}
section.hero .hero-slider .hero-slide-gridItem img {
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}

/* トップ | 事務所を知る */
section.about .about-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 3rem;
	--arkb-gap--y: 1.5rem;
}
@media (min-width: 1000px) {
	section.about .about-columns .ark-block-column:nth-child(1) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.about .about-columns .ark-block-column:nth-child(2) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
section.about .about-columns .ark-keep-mt--s > :not(:first-child) {
	--ark-mt--inner: 1.5rem;
}
@media (min-width: 1000px) {
	section.about .about-columns .text-col {
		font-size: 1.125rem;
		line-height: 2;
	}
}
section.about .about-image img {
	border-radius: 10px;
}

/* トップ | 代表メッセージ */
@media (min-width: 1000px) {
	section.message .ark-block-section__bodyInner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
		grid-template-rows: min-content 1fr min-content;
		gap: 2rem 3rem;
	}
	section.message .ark-block-section__bodyInner > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	section.message .ark-block-heading {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media (min-width: 1000px) {
	section.message .text-container {
		grid-column: 1/2;
		grid-row: 2/3;
		font-size: 1.125rem;
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
section.message .text-container > :not(:first-child) {
	--ark-mt--inner: 1.5rem;
}
@media (min-width: 1000px) {
	section.message .message-image {
		grid-column: 2/3;
		grid-row: 1/3;
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
section.message .message-image img {
	border-radius: 10px;
}
@media (min-width: 1000px) {
	section.message .message-buttons {
		grid-column: 1/3;
		grid-row: 3/4;
	}
}

/* トップ | 数字で見るプライムワークス */
@media (min-width: 1000px) {
	section.numbers .ark-block-section__bodyInner {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
		grid-template-rows: min-content 1fr min-content;
		gap: 2rem 3rem;
	}
	section.numbers .ark-block-section__bodyInner > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	section.numbers .ark-block-heading {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media (min-width: 1000px) {
	section.numbers .text-container {
		grid-column: 2/3;
		grid-row: 1/2;
		font-size: 1.125rem;
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
section.numbers .text-container > :not(:first-child) {
	--ark-mt--inner: 1.5rem;
}
section.numbers .numbers-columns {
	--arkb-clmn-w--pc: 25%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 50%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 1.5rem;
}
@media (min-width: 1000px) {
	section.numbers .numbers-columns {
		grid-column: 1/3;
		grid-row: 2/3;
	}
}
@media not all and (min-width: 600px) {
	section.numbers .numbers-columns {
		--arkb-gap--x: 10px;
		--arkb-gap--y: 10px;
	}
}
section.numbers .numbers-columns .numbers-column {
	background-color: #f1f7fb;
	padding: 1.5rem 1.5rem 2rem;
}
section.numbers .numbers-title {
	color: #135072;
	font-size: 1.25rem;
	text-align: center;
}
@media not all and (min-width: 600px) {
	section.numbers .numbers-title {
		font-size: 1.125em;
	}
}
section.numbers .numbers-icon {
	width: 80px;
	margin-left: auto;
	margin-right: auto;
}
@media not all and (min-width: 600px) {
	section.numbers .numbers-icon {
		width: 64px;
	}
}
section.numbers .stat-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}
section.numbers .stat-text > :not(:first-child) {
	margin-top: 0;
}
section.numbers .stat-num {
	color: #2085be;
	font-size: 4em;
	font-weight: 700;
	line-height: 1;
}
@media not all and (min-width: 600px) {
	section.numbers .stat-num {
		font-size: 2.5em;
	}
}
section.numbers .stat-unit {
	font-family: "BIZ UDPGothic", sans-serif;
}
@media not all and (min-width: 600px) {
	section.numbers .stat-unit {
		font-size: 0.875rem;
	}
}
@media (min-width: 1000px) {
	section.numbers .numbers-buttons {
		grid-column: 1/3;
		grid-row: 3/4;
	}
}

/* トップ | 所員インタビュー */
@media (min-width: 1000px) {
	section.interview .ark-block-section__bodyInner {
		display: grid;
		grid-template-columns: 1fr 2fr;
		grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
		grid-template-rows: min-content 1fr min-content;
		gap: 2rem 3rem;
	}
	section.interview .ark-block-section__bodyInner > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	section.interview .ark-block-heading {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media (min-width: 1000px) {
	section.interview .text-container {
		grid-column: 1/2;
		grid-row: 2/3;
		font-size: 1.125rem;
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
section.interview .text-container > :not(:first-child) {
	--ark-mt--inner: 1.5rem;
}
section.interview .interview-slider {
	--swiper-navigation-size: 42px;
	--arkb-padding: 0;
}
@media (min-width: 1000px) {
	section.interview .interview-slider {
		grid-column: 2/3;
		grid-row: 1/3;
		justify-self: center;
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
@media not all and (min-width: 600px) {
	section.interview .interview-slider {
		--swiper-navigation-size: 36px;
	}
}
section.interview .interview-slider .ark-block-slider__inner {
	display: grid;
	grid-template-columns: 1fr -webkit-min-content -webkit-min-content;
	grid-template-columns: 1fr min-content min-content;
	grid-template-rows: 1fr -webkit-min-content;
	grid-template-rows: 1fr min-content;
	gap: 1rem;
}
section.interview .interview-slider .swiper-wrapper {
	grid-column: 1/4;
	grid-row: 1/2;
}
section.interview .interview-slider .ark-block-slider__slide {
	border-radius: 10px;
	overflow: hidden;
}
section.interview .interview-slider .ark-block-slider__body[data-arkb-linkbox]:hover {
	border-color: #2085be;
	-webkit-filter: brightness(1.05);
	        filter: brightness(1.05);
}
section.interview .interview-slider .ark-block-slider__body[data-arkb-linkbox]:hover .interview-image img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
section.interview .interview-slider .swiper-pagination {
	grid-column: 1/2;
	grid-row: 2/3;
	align-self: center;
	position: relative;
	left: unset;
	bottom: unset;
}
section.interview .interview-slider .swiper-pagination-progressbar {
	background: rgba(32, 133, 190, 0.2);
}
section.interview .interview-slider .swiper-pagination-progressbar-fill {
	background: #2085be;
}
section.interview .interview-slider .ark-block-slider__nav {
	color: #2085be;
	background-color: #fff;
	border: 1px solid currentColor;
	border-radius: 9999px;
	position: relative;
	top: unset;
	padding: 11px;
	margin-top: unset;
}
@media not all and (min-width: 600px) {
	section.interview .interview-slider .ark-block-slider__nav {
		padding: 9px;
	}
}
section.interview .interview-slider .ark-block-slider__nav.-prev {
	left: unset;
}
section.interview .interview-slider .ark-block-slider__nav.-next {
	right: unset;
}
section.interview .interview-slider .swiper-button-prev {
	grid-column: 2/3;
	grid-row: 2/3;
}
section.interview .interview-slider .swiper-button-next {
	grid-column: 3/4;
	grid-row: 2/3;
}
section.interview .interview-image > :not(:first-child) {
	margin-top: 0;
}
section.interview .interview-figure {
	overflow: hidden;
}
section.interview .interview-figure img {
	aspect-ratio: 3/4;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
section.interview .interview-position {
	color: #fff;
	background-color: #2085be;
	font-size: 0.875rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border-radius: 0 0 10px 0;
	position: absolute;
	top: 0;
	left: 0;
	padding: 2px 10px;
	z-index: 1;
}
section.interview .interview-body {
	color: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
	background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
	width: 100%;
	padding: 4rem 1rem 1rem;
	position: absolute;
	left: 0;
	bottom: 0;
	margin-top: 0;
}
@media not all and (min-width: 600px) {
	section.interview .interview-body {
		padding: 4rem 0.75rem 0.75rem;
	}
}
section.interview .interview-body > :not(:first-child) {
	margin-top: 0;
}
section.interview .interview-name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: auto;
}
section.interview .interview-career {
	font-size: 0.875rem;
	margin-top: 0;
}
@media not all and (min-width: 600px) {
	section.interview .interview-career {
		font-size: 0.75rem;
	}
}
@media (min-width: 1000px) {
	section.interview .interview-buttons {
		grid-column: 1/3;
		grid-row: 3/4;
	}
}

/* トップ | 募集要項・応募エントリー */
section.entry {
	border-top: 1px solid #fff;
}
section.entry .entry-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
}
section.entry .entry-columns .entry-column {
	color: #fff;
	outline: 1px solid #fff;
}
section.entry .entry-columns .entry-column.requirements {
	background: -webkit-gradient(linear, left top, left bottom, from(#2085be), to(#1d65b1));
	background: linear-gradient(180deg, #2085be, #1d65b1);
}
section.entry .entry-columns .entry-column.entry {
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
}
section.entry .entry-columns .entry-column > :not(:first-child) {
	margin-top: 0;
}
section.entry .entry-body {
	display: grid;
	grid-template-columns: -webkit-min-content 1fr -webkit-min-content;
	grid-template-columns: min-content 1fr min-content;
	grid-template-rows: -webkit-min-content 1fr;
	grid-template-rows: min-content 1fr;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 0.75rem;
	padding: 3rem;
}
@media not all and (min-width: 1000px) {
	section.entry .entry-body {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	section.entry .entry-body {
		padding: 1.5rem;
	}
}
section.entry .entry-body > :not(:first-child) {
	margin-top: 0;
}
section.entry .entry-icon {
	grid-column: 1/2;
	grid-row: 1/3;
}
section.entry .entry-icon.entry .ark-block-icon__frame {
	padding: 5px;
}
section.entry .entry-subtitle {
	grid-column: 2/3;
	grid-row: 1/2;
}
section.entry .entry-title {
	grid-column: 2/3;
	grid-row: 2/3;
}
section.entry .linkbox-icon {
	grid-column: 3/4;
	grid-row: 1/3;
	font-size: 0.875rem;
	border: 1px solid currentColor;
	border-radius: 9999px;
	padding: 0.375em;
}

/* 事務所を知る */
body.slug-firm section.anchor .ark-block-section__bodyInner {
	padding-bottom: 0;
}
body.slug-firm .anchorNav {
	--arkb-btn-width: 20%;
	--arkb-gap--x: 1.5rem;
}
@media not all and (min-width: 1050px) {
	body.slug-firm .anchorNav {
		--arkb-btn-width: 33.33%;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm .anchorNav {
		--arkb-btn-width: 50%;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm .anchorNav {
		--arkb-gap--x: 1rem;
		--arkb-gap--y: 0.5rem;
	}
}
body.slug-firm .anchorNav .anchorNav-button {
	width: calc(var(--arkb-btn-width) - var(--arkb-gap--x));
}
body.slug-firm .anchorNav .anchorNav-button .ark-block-button__link {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	-webkit-box-shadow: unset;
	        box-shadow: unset;
	gap: 0.5em;
	padding: 0.75em 0 0.75em 0.5em;
	-webkit-transition: border-color 0.25s, -webkit-filter 0.25s;
	transition: border-color 0.25s, -webkit-filter 0.25s;
	transition: filter 0.25s, border-color 0.25s;
	transition: filter 0.25s, border-color 0.25s, -webkit-filter 0.25s;
}
body.slug-firm .anchorNav .anchorNav-button .ark-block-button__link:hover {
	border-color: #2085be;
}
body.slug-firm .anchorNav .anchorNav-button .ark-block-button__link:hover .ark-block-button__text {
	color: #2085be;
}
body.slug-firm .anchorNav .anchorNav-button .ark-block-button__link:hover .ark-block-button__icon.-right {
	fill: #fff;
	background-color: #2085be;
}
body.slug-firm .anchorNav .anchorNav-button .ark-block-button__text {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	color: #135072;
	text-align: left;
	margin-right: 1.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .anchorNav .anchorNav-button .ark-block-button__text {
		font-size: 1rem;
	}
}
body.slug-firm .anchorNav .anchorNav-button .ark-block-button__icon.-right {
	position: relative;
	right: unset;
	-webkit-transform: scale(1.25) translateX(-0.5em);
	        transform: scale(1.25) translateX(-0.5em);
	-webkit-transition: fill 0.25s, background-color 0.25s;
	transition: fill 0.25s, background-color 0.25s;
}
body.slug-firm .philosophy-container > :not(:first-child) {
	--ark-mt--inner: 1.5rem;
}
@media (min-width: 600px) {
	body.slug-firm .philosophy-text {
		font-size: 1.125rem;
		text-align: center;
	}
}
body.slug-firm .philosophy-columns {
	--arkb-clmn-w--pc: calc(20% + 1.5rem);
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 0px;
	--arkb-gap--y: 0px;
}
@media not all and (min-width: 1000px) {
	body.slug-firm .philosophy-columns {
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
}
body.slug-firm .philosophy-columns .philosophy-column {
	background: #f1f7fb;
}
@media (min-width: 1000px) {
	body.slug-firm .philosophy-columns .philosophy-column {
		background: radial-gradient(circle, #fff, rgba(32, 133, 190, 0.1));
		aspect-ratio: 1/1;
		border-radius: 9999px;
		padding: 1.75rem 1.75rem 1.5rem;
		margin-left: -0.75rem;
		margin-right: -0.75rem;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-firm .philosophy-columns .philosophy-column {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-ms-flex-wrap: nowrap;
		    flex-wrap: nowrap;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 0.5rem;
	}
}
@media (min-width: 600px) and (max-width: 1000px) {
	body.slug-firm .philosophy-columns .philosophy-column {
		padding: 0.75rem 1rem;
	}
	body.slug-firm .philosophy-columns .philosophy-column:not(:first-child) {
		border-top: 1px solid #ccc;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm .philosophy-columns .philosophy-column {
		background: transparent;
		border-bottom: 1px solid #ccc;
		padding: 0.5rem 0;
	}
	body.slug-firm .philosophy-columns .philosophy-column:first-child {
		border-top: 1px solid #ccc;
	}
}
body.slug-firm .philosophy-columns .philosophy-column > :not(:first-child) {
	--ark-mt--inner: 0.5rem;
}
@media not all and (min-width: 1000px) {
	body.slug-firm .philosophy-columns .philosophy-column > :not(:first-child) {
		--ark-mt--inner: 0;
	}
}
body.slug-firm .philosophy-icon {
	color: #2085be;
}
@media not all and (min-width: 1000px) {
	body.slug-firm .philosophy-icon {
		--arkb-icon-size: 4em !important;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm .philosophy-icon {
		--arkb-icon-size: 3em !important;
	}
}
body.slug-firm .philosophy-title {
	color: #135072;
	font-weight: 700;
}
@media (min-width: 600px) {
	body.slug-firm .philosophy-title {
		font-size: 1.125rem;
	}
}
@media (min-width: 1000px) {
	body.slug-firm .philosophy-title {
		text-align: center;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-firm .philosophy-title {
		line-height: 1.5;
	}
}
@media (min-width: 1000px) {
	body.slug-firm section.principle .ark-block-section__bodyInner {
		position: relative;
	}
	body.slug-firm section.principle .ark-block-section__bodyInner::before {
		content: "";
		background-image: url(../img/principle-bg.svg);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		aspect-ratio: 3/2;
		width: 330px;
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: -1;
	}
}
@media (min-width: 1000px) {
	body.slug-firm section.principle .ark-block-heading {
		text-align: left;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-firm section.principle .ark-block-heading {
		margin-bottom: 1rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm section.principle .ark-block-heading {
		margin-bottom: calc(1.5rem - 10px);
	}
}
body.slug-firm .principle-columns {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 50%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 1.5rem;
}
@media not all and (min-width: 1000px) {
	body.slug-firm .principle-columns {
		--arkb-gap--x: 1rem;
		--arkb-gap--y: 1rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm .principle-columns {
		--arkb-gap--x: 10px;
		--arkb-gap--y: 10px;
	}
}
body.slug-firm .principle-columns .heading-col {
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
}
body.slug-firm .principle-columns .content-col {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 0.75rem 1rem 0.5rem;
}
body.slug-firm .principle-columns .principle-body {
	display: none;
}
body.slug-firm .principle-columns .more-text {
	color: #90c2df;
	font-size: 0.875rem;
	text-align: right;
	padding-top: 1rem;
	margin-top: auto;
}
body.slug-firm .principle-head {
	display: grid;
	grid-template-columns: 1fr -webkit-min-content;
	grid-template-columns: 1fr min-content;
	grid-template-rows: -webkit-min-content 1fr;
	grid-template-rows: min-content 1fr;
	gap: 0.5rem 0;
}
@media not all and (min-width: 600px) {
	body.slug-firm .principle-head {
		gap: 0;
	}
}
body.slug-firm .principle-head > :not(:first-child) {
	--ark-mt--inner: 0;
}
body.slug-firm .principle-content > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
body.slug-firm .principle-num {
	grid-column: 1/2;
	grid-row: 1/2;
	align-self: center;
	color: #2085be;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	opacity: 0.3;
}
@media not all and (min-width: 600px) {
	body.slug-firm .principle-num {
		font-size: 2rem;
	}
}
body.slug-firm .principle-title {
	grid-column: 1/2;
	grid-row: 2/3;
	color: #135072;
	font-size: 1.375rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .principle-title {
		grid-column: 1/3;
		grid-row: 2/3;
		font-size: 1.125rem;
	}
}
body.slug-firm .principle-icon {
	grid-column: 2/3;
	grid-row: 1/3;
	align-self: center;
	color: #2085be;
}
@media not all and (min-width: 600px) {
	body.slug-firm .principle-icon {
		grid-row: 1/2;
		--arkb-icon-size: 3em !important;
	}
}
body.slug-firm .pw-modal__body:has(.principle-content) {
	max-width: min(600px, 60vw);
}
@media not all and (min-width: 1000px) {
	body.slug-firm .pw-modal__body:has(.principle-content) {
		max-width: min(600px, 92vw);
	}
}
body.slug-firm .pw-modal__body .principle-content {
	padding: 1.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .pw-modal__body .principle-content {
		padding: 1rem;
	}
}
body.slug-firm .pw-modal__body .principle-head {
	display: grid;
	grid-template-columns: -webkit-min-content 1fr -webkit-min-content;
	grid-template-columns: min-content 1fr min-content;
	grid-template-rows: auto;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.5rem;
}
body.slug-firm .pw-modal__body .principle-num {
	grid-column: 1/2;
	grid-row: 1/2;
	font-size: 3.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .pw-modal__body .principle-num {
		font-size: 2rem;
	}
}
body.slug-firm .pw-modal__body .principle-title {
	grid-column: 2/3;
	grid-row: 1/2;
	font-size: 1.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .pw-modal__body .principle-title {
		font-size: 1.2rem;
	}
}
body.slug-firm .pw-modal__body .principle-icon {
	grid-column: 3/4;
	grid-row: 1/2;
}
body.slug-firm .pw-modal__body .principle-body {
	text-align: justify;
}
@media (min-width: 1000px) {
	body.slug-firm .pw-modal__body .principle-body {
		font-size: 1.125rem;
	}
}
@media (min-width: 1000px) {
	body.slug-firm .overview-table {
		font-size: 1.125rem;
	}
}
body.slug-firm .overview-table .ark-block-dl__div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	border-left: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
	padding: 0;
}
@media not all and (min-width: 600px) {
	body.slug-firm .overview-table .ark-block-dl__div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
body.slug-firm .overview-table .ark-block-dl__div:first-child {
	border-top: 1px solid #aaa;
}
body.slug-firm .overview-table .ark-block-dl__dt {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 15em;
	        flex: 0 0 15em;
	color: #135072;
	background-color: #f1f7fb;
	border-right: 1px solid #aaa;
	padding: 1.25em;
	margin-right: 0;
}
@media not all and (min-width: 600px) {
	body.slug-firm .overview-table .ark-block-dl__dt {
		-webkit-box-flex: inherit;
		    -ms-flex: inherit;
		        flex: inherit;
		padding: 0.5em;
	}
}
body.slug-firm .overview-table .ark-block-dl__dd {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	border-right: 1px solid #aaa;
	padding: 1.25em;
}
@media not all and (min-width: 600px) {
	body.slug-firm .overview-table .ark-block-dl__dd {
		-webkit-box-flex: inherit;
		    -ms-flex: inherit;
		        flex: inherit;
		padding: 0.75em 0.5em;
	}
}
body.slug-firm .overview-table .ark-block-dl__dd.mgr-dd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 0.5em 1em;
}
body.slug-firm .overview-table .ark-block-dl__dd > :not(:first-child) {
	margin-top: 0;
}
body.slug-firm .overview-table .external-link a:not(:hover) {
	color: #333;
}
body.slug-firm .overview-table .external-link a .arkb-inline-icon {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
body.slug-firm .message-button a {
	color: #2085be;
	background-color: #fff;
	font-size: 0.875em;
	font-weight: 700;
	border-radius: 6px;
	-webkit-box-shadow: inset 0 0 0 1px #bbb;
	        box-shadow: inset 0 0 0 1px #bbb;
	text-decoration: none;
	padding: 0.75em 0.5em 0.75em 0.75em;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
body.slug-firm .message-button a:hover {
	color: #fff;
	background-color: #2085be;
}
body.slug-firm .message-button a::before {
	content: "";
	background-color: currentColor;
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M250-410h300v-60H250v60Zm0-120h460v-60H250v60Zm0-120h460v-60H250v60ZM100-118.46v-669.23Q100-818 121-839q21-21 51.31-21h615.38Q818-860 839-839q21 21 21 51.31v455.38Q860-302 839-281q-21 21-51.31 21H241.54L100-118.46ZM216-320h571.69q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46v-455.38q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H172.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v523.08L216-320Zm-56 0v-480 480Z"/></svg>');
	        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M250-410h300v-60H250v60Zm0-120h460v-60H250v60Zm0-120h460v-60H250v60ZM100-118.46v-669.23Q100-818 121-839q21-21 51.31-21h615.38Q818-860 839-839q21 21 21 51.31v455.38Q860-302 839-281q-21 21-51.31 21H241.54L100-118.46ZM216-320h571.69q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46v-455.38q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H172.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v523.08L216-320Zm-56 0v-480 480Z"/></svg>');
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	vertical-align: middle;
	margin-right: 4px;
}
body.slug-firm .message-button a .arkb-inline-icon {
	line-height: 1;
	outline: 1px solid currentColor;
	border-radius: 9999px;
	padding: 0.25rem;
	margin-left: 0.25rem;
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
body.slug-firm .message-button a .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
body.slug-firm .access-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 2rem;
	--arkb-gap--y: 2rem;
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .access-columns {
		margin-top: 2rem;
	}
}
body.slug-firm .access-container {
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .access-container {
		margin-top: 2rem;
	}
}
@media (min-width: 1000px) {
	body.slug-firm .access-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: -webkit-min-content -webkit-min-content 1fr;
		grid-template-rows: min-content min-content 1fr;
		gap: 1.5rem 3rem;
	}
}
body.slug-firm .access-container > :not(:first-child) {
	--ark-mt--inner: 1.5rem;
}
@media (min-width: 1000px) {
	body.slug-firm .access-container > :not(:first-child) {
		margin-top: 0;
	}
}
body.slug-firm .access-title {
	color: #135072;
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.25em;
}
@media (min-width: 1000px) {
	body.slug-firm .access-title {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
body.slug-firm .access-title .arkb-inline-icon {
	color: #2085be;
	font-size: 1.25em;
	margin-right: 0.25em;
}
body.slug-firm .access-title .arkb-fz-s {
	font-size: 0.75em !important;
}
body.slug-firm .address-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0 1rem;
}
@media (min-width: 1000px) {
	body.slug-firm .address-container {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}
body.slug-firm .gmap-link {
	margin-top: 0;
	margin-left: auto;
}
body.slug-firm .gmap-link a {
	color: #2085be !important;
}
body.slug-firm .gmap-link a .arkb-inline-icon:first-child {
	-webkit-transform: scale(1.25);
	        transform: scale(1.25);
	margin-right: 0.2rem;
}
body.slug-firm .gmap-link a .arkb-inline-icon:last-child {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
@media (min-width: 1000px) {
	body.slug-firm .access-table {
		grid-column: 1/2;
		grid-row: 3/4;
	}
}
body.slug-firm .access-table th {
	text-align: center;
}
body.slug-firm .access-table th:first-child {
	width: 40%;
}
body.slug-firm .access-table td {
	text-align: center;
	vertical-align: middle;
}
body.slug-firm .access-table .line-badge {
	text-align: left;
	text-indent: -1.25em;
	padding-left: 1.25em;
}
body.slug-firm .access-table .line-badge::before {
	content: "";
	display: inline-block;
	background: transparent;
	border: 3px solid var(--line-color, currentColor);
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
	margin-right: 0.25em;
}
body.slug-firm .access-table .line-badge.tokyu-ty {
	--line-color: #da0042;
}
body.slug-firm .access-table .line-badge.metro-hibiya {
	--line-color: #8f97a0;
}
body.slug-firm .access-table .line-badge.jr-yamanote {
	--line-color: #80c241;
}
body.slug-firm .access-table .line-badge.jr-saikyo {
	--line-color: #00a95f;
}
body.slug-firm .gmap {
	height: 100%;
}
@media (min-width: 1000px) {
	body.slug-firm .gmap {
		grid-column: 2/3;
		grid-row: 1/4;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-firm .gmap {
		aspect-ratio: 16/9;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm .gmap {
		aspect-ratio: 4/3;
	}
}
body.slug-firm section.office .tap-hint {
	color: #1d65b1;
	background-color: #fff;
	font-size: 12px;
	border-radius: 4px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 2px 6px 2px 4px;
}
@media (min-width: 600px) {
	body.slug-firm section.office .tap-hint {
		display: none;
	}
}
body.slug-firm section.office .tap-hint .arkb-inline-icon {
	font-size: 1.25em;
	line-height: 1;
	vertical-align: middle;
}
@media not all and (min-width: 600px) {
	body.slug-firm section.office .tap-hint + * {
		margin-top: 0.75rem !important;
	}
}
body.slug-firm .office-columns {
	--arkb-clmn-w--pc: 25%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 50%;
	--arkb-gap--x: 4px;
	--arkb-gap--y: 4px;
}
body.slug-firm .office-columns .office-column {
	position: relative;
	-webkit-transition: width 0.25s, -webkit-filter 0.25s;
	transition: width 0.25s, -webkit-filter 0.25s;
	transition: filter 0.25s, width 0.25s;
	transition: filter 0.25s, width 0.25s, -webkit-filter 0.25s;
}
body.slug-firm .office-columns .office-column:hover {
	--arkb-clmn-w--pc: 40%;
}
body.slug-firm .office-columns:has(.office-column:hover) .office-column:not(:hover) {
	--arkb-clmn-w--pc: 20%;
}
body.slug-firm .office-columns .pw-modal-trigger::after {
	content: "クリックで拡大";
	color: #fff;
	background-color: rgba(0, 0, 0, 0.65);
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="7" stroke="%23fff" stroke-width="2" fill="none"/><path d="M16 16l5 5" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>');
	background-repeat: no-repeat;
	background-position: 8px 50%;
	background-size: 14px 14px;
	font-size: 12px;
	line-height: 1;
	border-radius: 9999px;
	opacity: 0;
	position: absolute;
	top: 8px;
	right: 8px;
	-webkit-transform: translateY(-4px);
	        transform: translateY(-4px);
	-webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, transform 0.25s;
	transition: opacity 0.25s, transform 0.25s, -webkit-transform 0.25s;
	pointer-events: none;
	padding: 6px 8px 6px 28px;
}
@media (hover: hover) and (pointer: fine) {
	body.slug-firm .office-columns .pw-modal-trigger:hover::after, body.slug-firm .office-columns .pw-modal-trigger:focus::after {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
body.slug-firm .office-columns .office-body {
	color: #fff;
	background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
	background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 1.5rem 1rem 1rem;
	margin-top: 0;
}
@media not all and (min-width: 600px) {
	body.slug-firm .office-columns .office-body {
		padding: 1rem 0.75rem 0.75rem;
	}
}
body.slug-firm .office-columns .office-image img {
	-o-object-fit: cover;
	   object-fit: cover;
}
@media (min-width: 1000px) {
	body.slug-firm .office-columns .office-image img {
		height: 350px;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-firm .office-columns .office-image img {
		aspect-ratio: 4/3;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm .office-columns .office-image img {
		aspect-ratio: 1/1;
	}
}
body.slug-firm .office-columns .office-title {
	font-size: 1.375rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .office-columns .office-title {
		font-size: 1.125rem;
	}
}
@media (min-width: 1000px) {
	body.slug-firm .office-columns-wrapper:has(.office-column:hover) .office-column:not(:hover) {
		-webkit-filter: brightness(0.6);
		        filter: brightness(0.6);
	}
}
body.slug-firm .office-columns-wrapper > :not(:first-child) {
	margin-top: 4px;
}
body.slug-firm .office-content > :not(:first-child) {
	--ark-mt--inner: 0;
}
body.slug-firm .office-body > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
body.slug-firm .pw-modal__body .office-body {
	padding: 2rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .pw-modal__body .office-body {
		padding: 1rem;
	}
}
body.slug-firm .pw-modal__body .office-title {
	text-align: center;
}
body.slug-firm .photo-slider-wrapper {
	position: relative;
}
@media (min-width: 1000px) {
	body.slug-firm .photo-slider-wrapper {
		padding-left: calc(25% + 3rem);
	}
}
body.slug-firm .photo-slider {
	--swiper-navigation-size: 42px;
	--arkb-padding: 0;
}
@media not all and (min-width: 600px) {
	body.slug-firm .photo-slider {
		--swiper-navigation-size: 36px;
	}
}
body.slug-firm .photo-slider .ark-block-slider__inner {
	position: inherit;
	display: grid;
	grid-template-columns: -webkit-min-content 1fr -webkit-min-content;
	grid-template-columns: min-content 1fr min-content;
	gap: 1.5rem;
	overflow: visible;
}
@media not all and (min-width: 1000px) {
	body.slug-firm .photo-slider .ark-block-slider__inner {
		grid-template-rows: 1fr -webkit-min-content;
		grid-template-rows: 1fr min-content;
	}
}
body.slug-firm .photo-slider .swiper-wrapper {
	grid-column: 1/4;
	grid-row: 1/2;
}
body.slug-firm .photo-slider .ark-block-slider__body {
	border: 1px solid #ccc;
	padding: 1rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .photo-slider .ark-block-slider__body {
		padding: 0.75rem;
	}
}
body.slug-firm .photo-slider .swiper-pagination {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 4px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: unset;
}
@media (min-width: 1000px) {
	body.slug-firm .photo-slider .swiper-pagination {
		width: 25%;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-firm .photo-slider .swiper-pagination {
		grid-column: 1/4;
		grid-row: 2/3;
		position: relative;
		top: unset;
		left: unset;
	}
}
body.slug-firm .photo-slider .swiper-pagination-bullet {
	width: calc(50% - 2px);
	height: auto;
	background: transparent;
	border-radius: 0;
	opacity: 0.3;
	margin: 0;
}
@media not all and (min-width: 1000px) {
	body.slug-firm .photo-slider .swiper-pagination-bullet {
		width: calc(25% - 3px);
	}
}
body.slug-firm .photo-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}
body.slug-firm .photo-slider .swiper-pagination-bullet img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
body.slug-firm .photo-slider .ark-block-slider__nav {
	color: #2085be;
	background-color: #fff;
	border: 1px solid currentColor;
	border-radius: 9999px;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 4px -4px rgba(0, 0, 0, 0.1490196078);
	        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 4px -4px rgba(0, 0, 0, 0.1490196078);
	position: relative;
	top: unset;
	padding: 11px;
	margin-top: unset;
	-webkit-transition: opacity 0.25s;
	transition: opacity 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-firm .photo-slider .ark-block-slider__nav {
		padding: 9px;
	}
}
body.slug-firm .photo-slider .ark-block-slider__nav.-prev {
	left: unset;
}
body.slug-firm .photo-slider .ark-block-slider__nav.-next {
	right: unset;
}
body.slug-firm .photo-slider .ark-block-slider__nav:not(:hover) {
	opacity: 0.5;
}
body.slug-firm .photo-slider .swiper-button-prev {
	grid-column: 1/2;
	grid-row: 1/2;
	align-self: center;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
@media not all and (min-width: 600px) {
	body.slug-firm .photo-slider .swiper-button-prev {
		-webkit-transform: translateX(-35%);
		        transform: translateX(-35%);
	}
}
body.slug-firm .photo-slider .swiper-button-next {
	grid-column: 3/4;
	grid-row: 1/2;
	align-self: center;
	-webkit-transform: translateX(50%);
	        transform: translateX(50%);
}
@media not all and (min-width: 600px) {
	body.slug-firm .photo-slider .swiper-button-next {
		-webkit-transform: translateX(35%);
		        transform: translateX(35%);
	}
}
body.slug-firm .photo-image img {
	border-radius: 10px;
}
body.slug-firm .photo-body > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
@media not all and (min-width: 600px) {
	body.slug-firm .photo-body > :not(:first-child) {
		--ark-mt--inner: 0.75rem;
	}
}
@media (min-width: 600px) {
	body.slug-firm .photo-text {
		text-align: center;
	}
}
@media (min-width: 1000px) {
	body.slug-firm .photo-text {
		font-size: 1.125rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-firm .photo-text {
		font-size: 14px;
	}
}

/* 代表メッセージ */
body.slug-numbers .numbers-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 50%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 1.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-numbers .numbers-columns {
		--arkb-gap--x: 10px;
		--arkb-gap--y: 10px;
	}
}
body.slug-numbers .numbers-columns .numbers-column {
	background-color: #f1f7fb;
	padding: 1rem 1.5rem 2rem;
}
@media (min-width: 1000px) {
	body.slug-numbers .numbers-columns .numbers-column {
		display: grid;
		grid-template-columns: minmax(0, 2fr) 3fr;
		grid-template-rows: -webkit-min-content 1fr;
		grid-template-rows: min-content 1fr;
		gap: 1.5rem 2rem;
	}
	body.slug-numbers .numbers-columns .numbers-column > :not(:first-child) {
		margin-top: 0;
	}
}
@media not all and (min-width: 600px) {
	body.slug-numbers .numbers-columns .numbers-column {
		padding: 0.75rem 1rem 1rem;
	}
}
body.slug-numbers .numbers-title {
	color: #135072;
	text-align: center;
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.75rem;
}
@media (min-width: 1000px) {
	body.slug-numbers .numbers-title {
		grid-column: 1/3;
		grid-row: 1/2;
	}
}
@media not all and (min-width: 600px) {
	body.slug-numbers .numbers-title {
		padding-bottom: 0.5rem;
	}
}
body.slug-numbers .numbers-icon {
	width: 128px;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1000px) {
	body.slug-numbers .numbers-icon {
		grid-column: 1/2;
		grid-row: 2/3;
		margin-right: 0;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-numbers .numbers-icon {
		width: 96px;
	}
}
@media not all and (min-width: 600px) {
	body.slug-numbers .numbers-icon {
		width: 64px;
	}
}
@media (min-width: 1000px) {
	body.slug-numbers .numbers-body {
		grid-column: 2/3;
		grid-row: 2/3;
		align-self: center;
	}
}
body.slug-numbers .numbers-body > :not(:first-child) {
	margin-top: 0.5rem;
}
body.slug-numbers .stat-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}
@media (min-width: 1000px) {
	body.slug-numbers .stat-text {
		font-size: 1.25rem;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-numbers .stat-text {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
body.slug-numbers .stat-text > :not(:first-child) {
	margin-top: 0;
}
body.slug-numbers .stat-num {
	color: #2085be;
	font-size: 4em;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}
@media not all and (min-width: 600px) {
	body.slug-numbers .stat-num {
		font-size: 2.5em;
	}
}
body.slug-numbers .stat-unit {
	font-family: "BIZ UDPGothic", sans-serif;
	white-space: nowrap;
}
@media not all and (min-width: 600px) {
	body.slug-numbers .stat-unit {
		font-size: 0.875rem;
	}
}
body.slug-numbers .core-time {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (min-width: 1000px) {
	body.slug-numbers .core-time {
		font-size: 1.25rem;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-numbers .core-time {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		line-height: 1;
	}
}
body.slug-numbers .core-time > :not(:first-child) {
	margin-top: 0;
}
body.slug-numbers .core-time-text {
	white-space: nowrap;
}
body.slug-numbers .core-time-text .stat-num {
	font-size: 2.5em;
	vertical-align: middle;
}
@media not all and (min-width: 600px) {
	body.slug-numbers .core-time-text .stat-num {
		font-size: 2em;
	}
}
body.slug-numbers .age-range-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
body.slug-numbers .age-range-text .stat-num {
	font-size: 3.5em;
}
@media not all and (min-width: 600px) {
	body.slug-numbers .age-range-text .stat-num {
		font-size: 2em;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-numbers .stat-subtext {
		font-size: 0.875rem;
		text-align: center;
	}
}

/* 代表メッセージ */
body.slug-message .message-container > :not(:first-child) {
	--ark-mt--inner: 1em;
}
@media (min-width: 1000px) {
	body.slug-message .message-container > p {
		font-size: 1.125rem;
	}
}
body.slug-message .message-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 4rem;
	--arkb-gap--y: 1.5rem;
}
@media not all and (min-width: 1000px) {
	body.slug-message .message-columns.right-image .ark-block-columns__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}
body.slug-message .message-columns .text-col {
	--arkb-clmn-w--pc: 60%;
}
body.slug-message .message-columns .text-col > :not(:first-child) {
	--ark-mt--inner: 1em;
}
@media (min-width: 1000px) {
	body.slug-message .message-columns .text-col > p {
		font-size: 1.125rem;
	}
}
@media (min-width: 1000px) {
	body.slug-message .message-columns .text-col > ol {
		font-size: 1.125rem;
	}
}
body.slug-message .message-columns .image-col {
	--arkb-clmn-w--pc: 40%;
}
@media (min-width: 1000px) {
	body.slug-message .message-image-01 {
		position: sticky;
		top: calc(var(--ark-offset--y) + 1.5rem);
	}
}
@media not all and (min-width: 1000px) {
	body.slug-message .message-image-01 {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
body.slug-message .message-image-01 img {
	aspect-ratio: 16/9;
	-o-object-fit: cover;
	   object-fit: cover;
}
@media (min-width: 1000px) {
	body.slug-message .message-image-01 img {
		border-radius: 10px;
		aspect-ratio: 3/4;
		-o-object-position: 75% 50%;
		   object-position: 75% 50%;
	}
}
@media (min-width: 1000px) {
	body.slug-message .message-image-02 {
		position: sticky;
		top: calc(var(--ark-offset--y) + 1.5rem);
	}
}
@media not all and (min-width: 1000px) {
	body.slug-message .message-image-02 {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
body.slug-message .message-image-02 img {
	aspect-ratio: 16/9;
	-o-object-fit: cover;
	   object-fit: cover;
}
@media (min-width: 1000px) {
	body.slug-message .message-image-02 img {
		border-radius: 10px;
		aspect-ratio: 3/4;
		-o-object-position: 25% 50%;
		   object-position: 25% 50%;
	}
}
body.slug-message .message-heading {
	color: #135072;
	background-color: #f1f7fb;
	border-width: 4px 0 4px 0;
	border-style: solid;
	border-color: #e9f3f9;
	padding: 0.25em 0.5em;
}
body.slug-message .message-title {
	color: #135072;
	border-bottom: 1px solid #ccc;
	padding: 0.25em 0.6em;
	position: relative;
}
body.slug-message .message-title::before {
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2085be), color-stop(50%, #1d65b1));
	background-image: linear-gradient(180deg, #2085be 50%, #1d65b1 50%);
	width: 5px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	body.slug-message .message-title::before {
		width: 4px;
	}
}
body.slug-message .message-sign {
	text-align: right;
}

/* 所員インタビュー */
body.slug-interview section.interview-content .ark-block-section__bodyInner {
	padding-bottom: 0;
}
body.slug-interview .interview-tab {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
body.slug-interview .interview-tab .arkb-tabList {
	max-width: calc(var(--ark-width--article, 1000px) + var(--ark-padding--container, 0px) * 2);
	padding-left: var(--ark-padding--container, 0);
	padding-right: var(--ark-padding--container, 0);
	margin: 0 auto;
	-webkit-transform: translateY(1px);
	        transform: translateY(1px);
	z-index: 1;
}
body.slug-interview .interview-tab .arkb-tabList__item .arkb-tabList__button {
	color: #999;
	background: #f7f7f7;
	font-size: 1.25rem;
	border-left: 1px solid #aaa;
	border-bottom: 1px solid transparent;
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-tab .arkb-tabList__item .arkb-tabList__button {
		font-size: 1rem;
	}
}
body.slug-interview .interview-tab .arkb-tabList__item .arkb-tabList__button[aria-selected=true] {
	color: #2085be;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f7fb));
	background: linear-gradient(180deg, #fff, #f1f7fb);
	font-weight: 700;
	border-top: 2px solid #2085be;
	border-bottom: 1px solid #f1f7fb;
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-tab .arkb-tabList__item .arkb-tabList__button[aria-selected=true] {
		background: #fff;
		border-bottom: 1px solid transparent;
	}
}
body.slug-interview .interview-tab .arkb-tabList__item .arkb-tabList__button[aria-selected=false] {
	border-top: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
}
body.slug-interview .interview-tab .arkb-tabList__item:last-child .arkb-tabList__button {
	border-right: 1px solid #aaa;
}
body.slug-interview .interview-tab .arkb-tabBody {
	background-color: #f1f7fb;
	border-top: 1px solid #aaa;
	padding: 4rem 0;
}
@media not all and (min-width: 1000px) {
	body.slug-interview .interview-tab .arkb-tabBody {
		padding: 3rem 0;
	}
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-tab .arkb-tabBody {
		background-color: #fff;
		padding: 2rem 0;
	}
}
body.slug-interview .interview-tab .arkb-tabBody__content {
	max-width: calc(var(--ark-width--article, 1000px) + var(--ark-padding--container, 0px) * 2);
	padding-left: var(--ark-padding--container, 0);
	padding-right: var(--ark-padding--container, 0);
	margin: 0 auto;
}
body.slug-interview .interview-container {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	padding: 3rem;
}
@media not all and (min-width: 1000px) {
	body.slug-interview .interview-container {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-container {
		border-top: 4px solid #e9f3f9;
		border-radius: 0;
		-webkit-box-shadow: unset;
		        box-shadow: unset;
		padding: 1.5rem 0 0;
	}
}
body.slug-interview .interview-container + .interview-container {
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-container + .interview-container {
		margin-top: 1.5rem;
	}
}
body.slug-interview .interview-head {
	display: grid;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-template-rows: 2fr 1fr 1fr;
	gap: 0 3rem;
}
@media not all and (min-width: 1000px) {
	body.slug-interview .interview-head {
		grid-template-rows: -webkit-min-content -webkit-min-content 1fr;
		grid-template-rows: min-content min-content 1fr;
		gap: 0 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-head {
		gap: 0 1rem;
	}
}
body.slug-interview .interview-image {
	grid-column: 1/2;
	grid-row: 1/4;
	max-width: 250px;
}
@media not all and (min-width: 1000px) {
	body.slug-interview .interview-image {
		grid-row: 1/3;
		max-width: 150px;
	}
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-image {
		max-width: 100px;
	}
}
body.slug-interview .interview-image img {
	border-radius: 10px;
}
body.slug-interview .interview-heading {
	grid-column: 2/3;
	grid-row: 1/2;
	align-self: end;
	font-size: 2em;
	font-weight: 400;
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.5rem;
	margin-top: 0;
}
@media not all and (min-width: 1000px) {
	body.slug-interview .interview-heading {
		grid-column: 1/3;
		grid-row: 3/4;
		font-size: 1.75em;
		margin-top: 1rem;
		border-bottom: none;
		padding-bottom: 0;
	}
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-heading {
		font-size: 1.25em;
	}
}
body.slug-interview .interview-name {
	grid-column: 2/3;
	grid-row: 2/3;
	align-self: end;
	color: #135072;
	font-size: 1.75em;
	font-weight: 700;
	margin-top: 1rem;
}
@media not all and (min-width: 1000px) {
	body.slug-interview .interview-name {
		grid-row: 1/2;
		margin-top: 0;
	}
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-name {
		font-size: 1.375em;
	}
}
body.slug-interview .interview-name .arkb-fz-s {
	color: #fff;
	background-color: #2085be;
	font-size: 0.5em !important;
	border-radius: 6px;
	padding: 5px 10px;
	vertical-align: 0.325em;
	margin-right: 0.75em;
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-name .arkb-fz-s {
		font-size: 0.625em !important;
		vertical-align: 0.2em;
	}
}
body.slug-interview .interview-career {
	grid-column: 2/3;
	grid-row: 3/4;
	font-size: 1.125rem;
	margin-top: 0.25em;
}
@media not all and (min-width: 1000px) {
	body.slug-interview .interview-career {
		grid-row: 2/3;
	}
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-career {
		font-size: 1rem;
	}
}
body.slug-interview .interview-body > :not(:first-child) {
	--ark-mt--inner: 1em;
}
@media (min-width: 1000px) {
	body.slug-interview .interview-body > p {
		font-size: 1.125rem;
	}
}
body.slug-interview .interview-title {
	color: #135072;
	border-bottom: 1px solid #ccc;
	padding: 0.25em 0 0.25em 0.6em;
	position: relative;
}
body.slug-interview .interview-title::before {
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2085be), color-stop(50%, #1d65b1));
	background-image: linear-gradient(180deg, #2085be 50%, #1d65b1 50%);
	width: 5px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	body.slug-interview .interview-title::before {
		width: 4px;
	}
}
body.slug-interview .jimu-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 1.5rem;
}
body.slug-interview .jimu-columns .jimu-column {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	display: grid;
	grid-template-columns: -webkit-min-content 1fr;
	grid-template-columns: min-content 1fr;
	grid-template-rows: -webkit-min-content 1fr;
	grid-template-rows: min-content 1fr;
	gap: 0 0.5rem;
	padding: 1rem 2rem 1.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-interview .jimu-columns .jimu-column {
		border: 1px solid #ccc;
		-webkit-box-shadow: unset;
		        box-shadow: unset;
		padding: 0.5rem 1rem 1rem;
	}
}
body.slug-interview .jimu-columns .jimu-column > :not(:first-child) {
	margin-top: 0;
}
body.slug-interview .jimu-icon {
	grid-column: 1/2;
	grid-row: 1/2;
}
@media not all and (min-width: 600px) {
	body.slug-interview .jimu-icon {
		--arkb-icon-size: 4em !important;
	}
}
body.slug-interview .jimu-name {
	grid-column: 2/3;
	grid-row: 1/2;
	align-self: center;
	color: #135072;
	font-size: 1.75rem;
	font-weight: 700;
}
@media not all and (min-width: 600px) {
	body.slug-interview .jimu-name {
		font-size: 1.375em;
	}
}
body.slug-interview .jimu-name .arkb-fz-s {
	color: #fff;
	background-color: #2085be;
	font-size: 0.5em !important;
	border-radius: 6px;
	padding: 5px 10px;
	vertical-align: 0.325em;
	margin-right: 0.75em;
}
@media not all and (min-width: 600px) {
	body.slug-interview .jimu-name .arkb-fz-s {
		font-size: 0.625em !important;
		vertical-align: 0.2em;
	}
}
body.slug-interview .jimu-body {
	grid-column: 1/3;
	grid-row: 2/3;
	border-top: 1px solid #ccc;
	padding-top: 1rem;
}
@media (min-width: 1000px) {
	body.slug-interview .jimu-body {
		font-size: 1.125rem;
	}
}

/* 募集要項 */
@media (min-width: 1000px) {
	body.slug-requirements .requirements-text {
		font-size: 1.125rem;
		line-height: 2;
	}
}
body.slug-requirements .anchorNav {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 0rem;
}
body.slug-requirements .anchorNav .anchorNav-button {
	display: grid;
	grid-template-columns: 1fr -webkit-max-content -webkit-min-content;
	grid-template-columns: 1fr max-content min-content;
	grid-template-rows: auto;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem;
	border-bottom: 1px solid #ccc;
	padding: 0.75em 0.5em;
	-webkit-transition: border-color 0.25s, -webkit-filter 0.25s;
	transition: border-color 0.25s, -webkit-filter 0.25s;
	transition: filter 0.25s, border-color 0.25s;
	transition: filter 0.25s, border-color 0.25s, -webkit-filter 0.25s;
}
body.slug-requirements .anchorNav .anchorNav-button:hover {
	border-color: #2085be;
}
body.slug-requirements .anchorNav .anchorNav-button:hover .anchorNav-text {
	color: #2085be;
}
body.slug-requirements .anchorNav .anchorNav-button:hover .anchorNav-icon {
	color: #fff;
	background-color: #2085be;
	border-color: #2085be;
}
body.slug-requirements .anchorNav .anchorNav-button > :not(:first-child) {
	margin-top: 0;
}
body.slug-requirements .anchorNav .anchorNav-text {
	grid-column: 1/2;
	grid-row: 1/2;
	color: #135072;
	font-weight: 700;
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}
body.slug-requirements .anchorNav .recruit-status {
	grid-column: 2/3;
	grid-row: 1/2;
}
body.slug-requirements .anchorNav .recruit-status > :not(:first-child) {
	margin-top: 0;
}
body.slug-requirements .anchorNav .recruit-status .is-recruiting {
	color: #ff511f;
	background-color: #ffeee9;
	font-size: 0.875rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 2px 10px;
}
body.slug-requirements .anchorNav .recruit-status .is-not-recruiting {
	color: #666;
	background-color: #f5f5f5;
	font-size: 0.875rem;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 2px 10px;
}
body.slug-requirements .anchorNav .anchorNav-icon {
	grid-column: 3/4;
	grid-row: 1/2;
	color: #2085be;
	background-color: #fff;
	font-size: 0.875rem;
	border: 1px solid currentColor;
	border-radius: 9999px;
	padding: 0.25em;
	-webkit-transition: color 0.25s, background-color 0.25s, border-color 0.25s;
	transition: color 0.25s, background-color 0.25s, border-color 0.25s;
}
@media (min-width: 1000px) {
	body.slug-requirements .requirements-container > p {
		font-size: 1.125rem;
		line-height: 2;
	}
}
body.slug-requirements table {
	border-top: 1px solid #aaa;
	border-right: 1px solid #aaa;
}
@media not all and (min-width: 1000px) {
	body.slug-requirements table tr {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
}
body.slug-requirements table td,
body.slug-requirements table th {
	padding: 0.75em !important;
}
body.slug-requirements table th {
	width: 25%;
	color: #135072;
	background-color: #f1f7fb;
	border-left: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
}
@media not all and (min-width: 1000px) {
	body.slug-requirements table th {
		width: 100%;
	}
}
body.slug-requirements table td {
	border-left: 1px solid #aaa;
	border-bottom: 1px solid #aaa;
}
@media not all and (min-width: 1000px) {
	body.slug-requirements table td {
		width: 100%;
	}
}
body.slug-requirements table td.middle-cell {
	width: 20%;
}
@media not all and (min-width: 1000px) {
	body.slug-requirements table td.middle-cell {
		width: 33.33%;
	}
	body.slug-requirements table td.middle-cell + td {
		width: 66.66%;
	}
}
body.slug-requirements table p {
	word-break: inherit;
}

/* 応募エントリー */
body.slug-entry .p-breadcrumb {
	background-color: #f1f7fb;
}
body.slug-entry section.entry-form {
	--ark-width--article: 1100px;
}
@media (min-width: 600px) {
	body.slug-entry section.entry-form .ark-block-section__color {
		background-color: #f1f7fb !important;
	}
}
body.slug-entry .entry-form-container {
	background-color: #fff;
	padding: 4rem;
}
@media (min-width: 600px) {
	body.slug-entry .entry-form-container {
		-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
		        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
		border-radius: 8px;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-entry .entry-form-container {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-entry .entry-form-container {
		padding: unset;
	}
}
body.slug-entry .wp-block-contact-form-7-contact-form-selector {
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	body.slug-entry .wp-block-contact-form-7-contact-form-selector {
		margin-top: 2rem;
	}
}
body.slug-entry .c-form {
	max-width: 900px;
	margin: 0 auto;
}
body.slug-entry .c-form .form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}
@media not all and (min-width: 1000px) {
	body.slug-entry .c-form .form-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
body.slug-entry .c-form .form-row:not(:first-child) {
	margin-top: 1rem;
}
body.slug-entry .c-form .form-label {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	min-width: 210px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
body.slug-entry .c-form .form-label .label-title {
	cursor: pointer;
	width: 100%;
	line-height: 1.5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.5em;
	padding: 11px 0;
}
@media not all and (min-width: 1000px) {
	body.slug-entry .c-form .form-label .label-title {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		gap: 10px;
		padding: 0;
	}
}
body.slug-entry .c-form .form-label .label-title .label-text {
	font-weight: 700;
}
body.slug-entry .c-form .form-label .label-title .label-type {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	border-radius: 4px;
	padding: 3px 6px;
	white-space: nowrap;
}
body.slug-entry .c-form .form-label .label-title .label-type.required {
	color: #fff;
	background-color: #ff511f;
	border: 1px solid #ff511f;
}
body.slug-entry .c-form .form-label .label-title .label-type.optional {
	color: #666;
	background-color: #f3f3f3;
	border: 1px solid #999;
}
body.slug-entry .c-form .form-body {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 0px;
	        flex: 1 1 0;
	-ms-flex-item-align: center;
	    align-self: center;
}
@media (min-width: 1000px) {
	body.slug-entry .c-form .form-body {
		margin-left: 2rem;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-entry .c-form .form-body {
		-ms-flex-item-align: auto;
		    align-self: auto;
		margin-top: 0.5rem;
	}
}
body.slug-entry .c-form input[type=text],
body.slug-entry .c-form input[type=tel],
body.slug-entry .c-form input[type=email],
body.slug-entry .c-form input[type=url],
body.slug-entry .c-form input[type=date],
body.slug-entry .c-form input[type=number],
body.slug-entry .c-form textarea {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	font-family: inherit;
	font-weight: inherit;
	font-size: 16px;
	color: inherit;
	background-color: #fff;
	border: 1px solid #bbb;
	border-radius: 6px;
	-webkit-box-shadow: none;
	        box-shadow: none;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	height: auto;
	padding: 8px 12px;
	margin: 0;
}
body.slug-entry .c-form input[type=text]::-webkit-input-placeholder, body.slug-entry .c-form input[type=tel]::-webkit-input-placeholder, body.slug-entry .c-form input[type=email]::-webkit-input-placeholder, body.slug-entry .c-form input[type=url]::-webkit-input-placeholder, body.slug-entry .c-form input[type=date]::-webkit-input-placeholder, body.slug-entry .c-form input[type=number]::-webkit-input-placeholder, body.slug-entry .c-form textarea::-webkit-input-placeholder {
	color: #ccc;
}
body.slug-entry .c-form input[type=text]::-moz-placeholder, body.slug-entry .c-form input[type=tel]::-moz-placeholder, body.slug-entry .c-form input[type=email]::-moz-placeholder, body.slug-entry .c-form input[type=url]::-moz-placeholder, body.slug-entry .c-form input[type=date]::-moz-placeholder, body.slug-entry .c-form input[type=number]::-moz-placeholder, body.slug-entry .c-form textarea::-moz-placeholder {
	color: #ccc;
}
body.slug-entry .c-form input[type=text]:-ms-input-placeholder, body.slug-entry .c-form input[type=tel]:-ms-input-placeholder, body.slug-entry .c-form input[type=email]:-ms-input-placeholder, body.slug-entry .c-form input[type=url]:-ms-input-placeholder, body.slug-entry .c-form input[type=date]:-ms-input-placeholder, body.slug-entry .c-form input[type=number]:-ms-input-placeholder, body.slug-entry .c-form textarea:-ms-input-placeholder {
	color: #ccc;
}
body.slug-entry .c-form input[type=text]::-ms-input-placeholder, body.slug-entry .c-form input[type=tel]::-ms-input-placeholder, body.slug-entry .c-form input[type=email]::-ms-input-placeholder, body.slug-entry .c-form input[type=url]::-ms-input-placeholder, body.slug-entry .c-form input[type=date]::-ms-input-placeholder, body.slug-entry .c-form input[type=number]::-ms-input-placeholder, body.slug-entry .c-form textarea::-ms-input-placeholder {
	color: #ccc;
}
body.slug-entry .c-form input[type=text]::placeholder,
body.slug-entry .c-form input[type=tel]::placeholder,
body.slug-entry .c-form input[type=email]::placeholder,
body.slug-entry .c-form input[type=url]::placeholder,
body.slug-entry .c-form input[type=date]::placeholder,
body.slug-entry .c-form input[type=number]::placeholder,
body.slug-entry .c-form textarea::placeholder {
	color: #ccc;
}
body.slug-entry .c-form textarea {
	height: 10em;
}
body.slug-entry .c-form select {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%230f8dcc' d='M6.984 9.984h10.031l-5.016 5.016z'/></svg>");
	background-size: 2rem 2rem;
	background-position: 100%;
	background-repeat: no-repeat;
	border: 1px solid #bbb;
	border-radius: 6px;
	max-width: 100%;
	color: #333;
	cursor: pointer;
	display: block;
	padding: 0.5em 2em 0.5em 0.75em;
}
body.slug-entry .c-form .wpcf7-list-item {
	margin: 0;
}
body.slug-entry .c-form .wpcf7-list-item:not(:first-child) {
	margin-left: 1.5em;
}
body.slug-entry .c-form .birthday-fields {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
body.slug-entry .c-form .birthday-fields select#your-birth-year {
	min-width: 7em;
}
body.slug-entry .c-form .birthday-fields select#your-birth-month {
	min-width: 5em;
}
body.slug-entry .c-form .birthday-fields select#your-birth-day {
	min-width: 5em;
}
body.slug-entry .c-form .birthday-fields .date-unit {
	margin-left: 0.25em;
	margin-right: 0.75em;
}
body.slug-entry .c-form .wpcf7-not-valid-tip {
	font-size: smaller;
	font-weight: 500;
	color: #ff674f;
}
body.slug-entry .c-form .privacy-text {
	text-align: center;
	margin-top: 2rem;
}
@media not all and (min-width: 600px) {
	body.slug-entry .c-form .privacy-text {
		margin-top: 1rem;
	}
}
body.slug-entry .c-form .privacy-text a {
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}
body.slug-entry .c-form .privacy-text a:not(:hover) {
	color: #333;
}
body.slug-entry .c-form .privacy-text a .arkb-inline-icon {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
body.slug-entry .c-form .submit-btn {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 2rem;
	margin-left: auto;
	margin-right: auto;
}
@media not all and (min-width: 600px) {
	body.slug-entry .c-form .submit-btn {
		margin-top: 1.5rem;
	}
}
body.slug-entry .c-form .submit-btn input[type=submit] {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	cursor: pointer;
	color: #2085be;
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 6px;
	font-weight: 700;
	line-height: 1.5;
	padding: 0.75em 2em;
	-webkit-transition-property: color, background-color;
	transition-property: color, background-color;
	-webkit-transition-duration: 0.25s;
	        transition-duration: 0.25s;
}
body.slug-entry .c-form .submit-btn input[type=submit]:hover {
	color: #fff;
	background: #2085be;
}
body.slug-entry .c-form .wpcf7-spinner {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
body.slug-entry .wpcf7-turnstile {
	text-align: center;
	margin-top: 2rem !important;
}

/* エントリーサンクス */
body.slug-thanks .l-content {
	background-color: #f1f7fb;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media not all and (min-width: 600px) {
	body.slug-thanks .l-content {
		background-color: #fff;
	}
}
body.slug-thanks section.thanks {
	--ark-width--article: 1100px;
}
body.slug-thanks .thanks-container {
	padding: 4rem;
}
@media (min-width: 600px) {
	body.slug-thanks .thanks-container {
		background-color: #fff;
		-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
		        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
		border-radius: 8px;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-thanks .thanks-container {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-thanks .thanks-container {
		padding: unset;
	}
}
body.slug-thanks h1.thanks-heading {
	color: #135072;
	text-align: center;
}
@media not all and (min-width: 1000px) {
	body.slug-thanks h1.thanks-heading {
		font-size: 1.75em;
	}
}
@media not all and (min-width: 600px) {
	body.slug-thanks h1.thanks-heading {
		font-size: 1.375em;
	}
}
@media (min-width: 1000px) {
	body.slug-thanks .thanks-text {
		font-size: 1.125rem;
		text-align: center;
	}
}
body.slug-thanks .info-container {
	background-color: #f1f7fb;
	padding: 1rem 2rem;
}
@media not all and (min-width: 600px) {
	body.slug-thanks .info-container {
		padding: 1rem;
	}
}
body.slug-thanks .info-container > :not(:first-child) {
	margin-top: 1rem;
}
body.slug-thanks .info-name {
	border-bottom: 1px double #ccc;
	padding-bottom: 0.5rem;
}
@media (min-width: 1000px) {
	body.slug-thanks .info-name {
		font-size: 1.25rem;
		text-align: center;
	}
}
@media (min-width: 1000px) {
	body.slug-thanks .info-address {
		font-size: 1.125rem;
		text-align: center;
	}
}

/* フッター */
.l-footer {
	color: #fff;
	background: #2085be;
	border-top: 1px solid #fff;
}
.l-footer .footer-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
}
.l-footer .footer-logo {
	text-align: left;
}
.l-footer .footer-logo img {
	width: auto;
	height: var(--ark-logo_size--pc);
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
}
@media not all and (min-width: 600px) {
	.l-footer .footer-logo img {
		height: 48px;
	}
}
.l-footer .footer-name {
	line-height: 1.8;
}
.l-footer .footer-name + * {
	margin-top: 0;
}
.l-footer .footer-name__firm {
	padding-right: 0.5em;
}
.l-footer .footer-name__recruit {
	font-size: 0.875rem;
	border: 1px solid #fff;
	padding: 4px 6px;
	white-space: nowrap;
}
.l-footer .footer-address {
	line-height: 1.8;
}
.l-footer .footer-nav-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 1rem;
}
.l-footer .footer-nav-container > * {
	margin-top: 0;
}
.l-footer .footer-nav {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 0 3rem;
	padding: 0;
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav {
		font-size: 0.8rem;
		gap: 0 1.5rem;
	}
}
.l-footer .footer-nav > li {
	width: calc(50% - 1.5rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav > li {
		width: calc(50% - 0.75rem);
	}
}
.l-footer .footer-nav > li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	word-break: keep-all;
	overflow-wrap: anywhere;
	padding-top: 10px;
	padding-bottom: 10px;
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav > li a {
		padding-top: 8px;
		padding-bottom: 8px;
	}
}
.l-footer .footer-nav > li a:not(:hover) {
	text-decoration: none;
}
.l-footer .footer-nav > li .arkb-small {
	font-size: 0.875em;
}
.l-footer .l-footer__foot {
	border-top: 1px solid #fff;
}
.l-footer .l-footer__foot .l-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.5rem 1rem;
}
@media not all and (min-width: 600px) {
	.l-footer .l-footer__foot .l-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.l-footer .footer-links {
	font-size: 0.875rem;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	gap: 1rem;
	padding-left: 0;
}
.l-footer .footer-links .footer-links__a:not(:hover) {
	text-decoration: none;
}
.l-footer .footer-links .footer-links__a .arkb-inline-icon {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
.l-footer .c-copyright {
	font-size: 0.875rem;
}

/* 追従CTA */
.sticky-cta {
	position: fixed;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.9);
	-webkit-box-shadow: 0 -1px 1px rgba(255, 255, 255, 0.8);
	        box-shadow: 0 -1px 1px rgba(255, 255, 255, 0.8);
	width: 100%;
	padding-bottom: calc(env(safe-area-inset-bottom) * 0.5);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.25s, visibility 0.25s;
	transition: opacity 0.25s, visibility 0.25s;
	z-index: 3;
}
@media (min-width: 1000px) {
	.sticky-cta {
		display: none;
	}
}
[data-scrolled=true] .sticky-cta {
	opacity: 1;
	visibility: visible;
}
.scroll-end .sticky-cta {
	opacity: 0;
	visibility: hidden;
}

.sticky-cta-buttons {
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}
.sticky-cta-buttons .ark-block-button {
	width: 50%;
}
.sticky-cta-buttons .ark-block-button .ark-block-button__link {
	border-radius: 0;
	width: 100%;
	height: 100%;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	gap: 0.5em;
	padding: 1em;
}
.sticky-cta-buttons .ark-block-button .ark-block-button__text {
	font-size: 1rem;
}
@media not all and (min-width: 600px) {
	.sticky-cta-buttons .ark-block-button .ark-block-button__text {
		font-size: 0.875rem;
	}
}
.sticky-cta-buttons .requirements-button .ark-block-button__link {
	background: -webkit-gradient(linear, left top, left bottom, from(#2085be), to(#1d65b1));
	background: linear-gradient(180deg, #2085be, #1d65b1);
}
.sticky-cta-buttons .requirements-button .ark-block-button__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.25em;
}
.sticky-cta-buttons .requirements-button .arkb-inline-icon {
	font-size: 1.5rem;
	line-height: 1;
}
@media not all and (min-width: 600px) {
	.sticky-cta-buttons .requirements-button .arkb-inline-icon {
		font-size: 1.25rem;
	}
}
.sticky-cta-buttons .entry-button {
	border-left: 1px solid #fff;
}
.sticky-cta-buttons .entry-button .ark-block-button__link {
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
}
.sticky-cta-buttons .entry-button .ark-block-button__icon.-left {
	-webkit-transform: unset;
	        transform: unset;
}
@media (min-width: 600px) {
	.sticky-cta-buttons .entry-button .ark-block-button__icon.-left {
		width: 1.25em;
		height: 1.25em;
	}
}

/* ページトップボタン */
@media not all and (min-width: 600px) {
	.p-fixBtnWrap {
		right: 2%;
		bottom: 9%;
	}
}
.p-fixBtnWrap .c-fixBtn.-pagetop {
	color: #2085be;
	background-color: #fff;
	border: 1px solid currentColor;
	border-radius: 9999px;
}