@charset "UTF-8";
/* フォント */
:root {
	--ark-font_family: "Noto Sans JP", sans-serif;
	--montserrat: "Montserrat", "Noto Sans JP", sans-serif;
}

/* 段落 */
:where(.c-postContent) 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.375em;
	}
}

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

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

/* コンテンツ幅 */
@media not all and (min-width: 1000px) {
	:root {
		--ark-width--article: 750px;
	}
}
/* コンテンツボディ*/
.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;
	}
}

/* Site Loader */
@-webkit-keyframes loaderLogoIn {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
		-webkit-filter: blur(4px);
		        filter: blur(4px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
}
@keyframes loaderLogoIn {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
		-webkit-filter: blur(4px);
		        filter: blur(4px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		-webkit-filter: blur(0);
		        filter: blur(0);
	}
}
@-webkit-keyframes loaderDoorOpenL {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
}
@keyframes loaderDoorOpenL {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-100%);
		        transform: translateX(-100%);
	}
}
@-webkit-keyframes loaderDoorOpenR {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
}
@keyframes loaderDoorOpenR {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(100%);
		        transform: translateX(100%);
	}
}
/* Marquee Loop */
@-webkit-keyframes marqueeLoop {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
@keyframes marqueeLoop {
	0% {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
/* Fade In */
@-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;
}

/* Fade Up */
@-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;
}

/* Wipe Reveal */
@-webkit-keyframes wipeRevealText {
	0% {
		color: transparent;
		opacity: 0;
	}
	45% {
		color: transparent;
		opacity: 0;
	}
	50% {
		color: var(--wipe-text-color);
		opacity: 1;
	}
	100% {
		color: var(--wipe-text-color);
		opacity: 1;
	}
}
@keyframes wipeRevealText {
	0% {
		color: transparent;
		opacity: 0;
	}
	45% {
		color: transparent;
		opacity: 0;
	}
	50% {
		color: var(--wipe-text-color);
		opacity: 1;
	}
	100% {
		color: var(--wipe-text-color);
		opacity: 1;
	}
}
@-webkit-keyframes wipeRevealBgIn {
	0% {
		-webkit-transform: scaleX(0);
		        transform: scaleX(0);
		-webkit-transform-origin: left center;
		        transform-origin: left center;
	}
	100% {
		-webkit-transform: scaleX(1);
		        transform: scaleX(1);
		-webkit-transform-origin: left center;
		        transform-origin: left center;
	}
}
@keyframes wipeRevealBgIn {
	0% {
		-webkit-transform: scaleX(0);
		        transform: scaleX(0);
		-webkit-transform-origin: left center;
		        transform-origin: left center;
	}
	100% {
		-webkit-transform: scaleX(1);
		        transform: scaleX(1);
		-webkit-transform-origin: left center;
		        transform-origin: left center;
	}
}
@-webkit-keyframes wipeRevealBgOut {
	0% {
		-webkit-transform: scaleX(1);
		        transform: scaleX(1);
		-webkit-transform-origin: right center;
		        transform-origin: right center;
	}
	100% {
		-webkit-transform: scaleX(0);
		        transform: scaleX(0);
		-webkit-transform-origin: right center;
		        transform-origin: right center;
	}
}
@keyframes wipeRevealBgOut {
	0% {
		-webkit-transform: scaleX(1);
		        transform: scaleX(1);
		-webkit-transform-origin: right center;
		        transform-origin: right center;
	}
	100% {
		-webkit-transform: scaleX(0);
		        transform: scaleX(0);
		-webkit-transform-origin: right center;
		        transform-origin: right center;
	}
}
.wipe-reveal {
	--wipe-bg: #121212;
	--wipe-duration: 0.9s;
	--wipe-in: 0.55s;
	--wipe-out: 0.35s;
}
.wipe-reveal .arkb-format-reveal {
	--wipe-text-color: currentColor;
	color: transparent;
	line-height: 1.3;
	opacity: 0;
	position: relative;
	display: inline-block;
	padding: 0 0.5rem;
	margin: 0 -0.5rem;
}
.wipe-reveal .arkb-format-reveal::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--wipe-bg);
	-webkit-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transform-origin: left center;
	        transform-origin: left center;
}
.wipe-reveal.fired .arkb-format-reveal {
	-webkit-animation: wipeRevealText var(--wipe-duration) linear forwards;
	        animation: wipeRevealText var(--wipe-duration) linear forwards;
}
.wipe-reveal.fired .arkb-format-reveal::before {
	-webkit-animation: wipeRevealBgIn var(--wipe-in) ease-out forwards, wipeRevealBgOut var(--wipe-out) ease-in var(--wipe-in) forwards;
	        animation: wipeRevealBgIn var(--wipe-in) ease-out forwards, wipeRevealBgOut var(--wipe-out) ease-in var(--wipe-in) forwards;
}

/* サイトローダー */
.c-siteLoader {
	background: transparent;
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	overflow: hidden;
}
.c-siteLoader::before, .c-siteLoader::after {
	content: "";
	background: #121212;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
}
.c-siteLoader::before {
	left: 0;
}
.c-siteLoader::after {
	right: 0;
}
.c-siteLoader .c-siteLoader__inner {
	position: relative;
	z-index: 2;
}
.c-siteLoader .c-siteLoader__logo {
	max-width: 250px;
	opacity: 0;
	-webkit-transform: translateY(10px);
	        transform: translateY(10px);
	-webkit-filter: blur(4px);
	        filter: blur(4px);
}
@media not all and (min-width: 600px) {
	.c-siteLoader .c-siteLoader__logo {
		max-width: 125px;
	}
}
.c-siteLoader .c-siteLoader__logo img {
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
}
.c-siteLoader.is-active .c-siteLoader__logo {
	-webkit-animation: loaderLogoIn 0.8s ease forwards;
	        animation: loaderLogoIn 0.8s ease forwards;
}
.c-siteLoader.is-hidden {
	pointer-events: none;
}
.c-siteLoader.is-hidden::before {
	-webkit-animation: loaderDoorOpenL 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
	        animation: loaderDoorOpenL 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.c-siteLoader.is-hidden::after {
	-webkit-animation: loaderDoorOpenR 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
	        animation: loaderDoorOpenR 0.7s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

/* セクション */
.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 h2.ark-block-heading__main {
	font-size: 2.25em;
}
@media not all and (min-width: 1000px) {
	.ark-block-heading h2.ark-block-heading__main {
		font-size: 2em;
	}
}
@media not all and (min-width: 600px) {
	.ark-block-heading h2.ark-block-heading__main {
		font-size: 1.5em;
	}
}
.ark-block-heading.wipe-reveal.fired h2.ark-block-heading__main .arkb-format-reveal {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
.ark-block-heading.wipe-reveal.fired h2.ark-block-heading__main .arkb-format-reveal::before {
	-webkit-animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
	        animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
}
.ark-block-heading .ark-block-heading__sub {
	color: #f4b545;
	font-family: var(--montserrat);
	font-size: 1.125em;
	font-weight: 600;
	opacity: 1;
}
@media not all and (min-width: 600px) {
	.ark-block-heading .ark-block-heading__sub {
		font-size: 1em;
	}
}

/* 見出し */
:where(.c-postContent, .ark-block-section__bodyInner) > h2.wp-block-heading {
	background-color: #f3f3f3;
	border-width: 4px 0 4px 0;
	border-style: double;
	border-color: #898989;
	padding: 0.25em 0.5em 0.375em;
}
:where(.c-postContent, .ark-block-section__bodyInner) > h3.wp-block-heading {
	background-color: #f3f3f3;
	border-left: 4px solid #121212;
	padding: 0.375em 0.5em;
}
:where(.c-postContent, .ark-block-section__bodyInner) > h4.wp-block-heading {
	border-bottom: 1px solid #ccc;
	padding: 0.375em 0.75em;
	position: relative;
}
:where(.c-postContent, .ark-block-section__bodyInner) > h4.wp-block-heading::before {
	content: "";
	background-color: #121212;
	width: 0.375em;
	height: 0.375em;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}

/* ボタン */
.ark-block-button .ark-block-button__link {
	border-radius: 8px;
	padding: 0.875em 3em;
}
@media not all and (min-width: 600px) {
	.ark-block-button .ark-block-button__link {
		padding: 0.75em 3em;
	}
}
.ark-block-button .ark-block-button__link:has(.ark-block-button__icon.-right) {
	padding: 0.875em 3em 0.875em 2.5em;
}
@media not all and (min-width: 600px) {
	.ark-block-button .ark-block-button__link:has(.ark-block-button__icon.-right) {
		padding: 0.75em 3em 0.75em 2.5em;
	}
}
.ark-block-button .ark-block-button__link::before {
	content: none;
}
.ark-block-button .ark-block-button__text {
	font-family: var(--montserrat);
	font-weight: 600;
}
.ark-block-button .ark-block-button__icon.-right {
	position: absolute;
	right: 24px;
}
.ark-block-button.is-btn-outline .ark-block-button__link {
	background-color: #fff;
	-webkit-box-shadow: inset 0 0 0 1px #898989;
	        box-shadow: inset 0 0 0 1px #898989;
}
.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-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;
}

/* 投稿リスト */
.p-postList .p-postList__item:hover .p-postList__body {
	opacity: 1;
}
.p-postList .p-postList__link {
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.p-postList .p-postList__link:hover {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.p-postList .p-postList__thumb::before {
	content: none;
}
.p-postList .p-postList__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.p-postList .p-postList__title {
	color: #333;
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-box-ordinal-group: 3;
	    -ms-flex-order: 2;
	        order: 2;
}
.p-postList .p-postList__meta {
	font-size: 0.9rem;
	line-height: 1.5;
	gap: 0.25rem;
	margin-top: 0;
	margin-bottom: 0.5rem;
	-webkit-box-ordinal-group: 2;
	    -ms-flex-order: 1;
	        order: 1;
}
.p-postList .p-postList__meta > div {
	margin-bottom: 0;
}
.p-postList .p-postList__times {
	opacity: 1;
}
.p-postList .p-postList__category {
	font-size: 0.75rem;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 4px;
	margin-right: 0;
	opacity: 1;
}
.p-postList .p-postList__category span {
	color: #fff;
	background-color: #121212;
	border-radius: 4px;
	padding: 3px 6px;
}
.p-postList .c-postMetas__icon {
	display: none;
}
.p-postList .p-postList__excerpt {
	-webkit-box-ordinal-group: 4;
	    -ms-flex-order: 3;
	        order: 3;
}
.p-postList.-type-simple .p-postList__link:hover {
	background-color: transparent;
}
.p-postList.-type-list .p-postList__thumb {
	max-width: 250px;
}
@media not all and (min-width: 600px) {
	.p-postList.-type-list .p-postList__thumb {
		max-width: 100px;
	}
}
@media not all and (min-width: 600px) {
	.p-postList.-type-list .c-postThumb__figure {
		--ark-thumb_ratio: 100%;
	}
}
.p-postList.-type-list .p-postList__title {
	font-size: 1.25rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media not all and (min-width: 600px) {
	.p-postList.-type-list .p-postList__title {
		font-size: 1.125rem;
		-webkit-line-clamp: 3;
	}
}
.p-postList.-type-list .p-postList__excerpt {
	font-size: 0.875rem;
}
@media not all and (min-width: 600px) {
	.p-postList.-type-list .p-postList__excerpt {
		display: none;
	}
}
.p-postList.-type-card {
	margin-bottom: -1.5rem;
}
.p-postList.-type-card .p-postList__item {
	margin-bottom: 1.5rem;
}
.p-postList.-type-card .p-postList__excerpt {
	font-size: 0.875rem;
}

/* パンくずリスト */
@media (min-width: 1000px) {
	.p-breadcrumb {
		padding: 12px 0;
	}
}
.p-breadcrumb .p-breadcrumb__text {
	font-size: 14px;
}
@media not all and (min-width: 600px) {
	.p-breadcrumb .p-breadcrumb__text {
		font-size: 12px;
	}
}

/* ページネーション */
@media not all and (min-width: 1000px) {
	.pagination {
		margin-top: 2rem;
	}
}
.pagination .page-numbers,
.pagination .post-numbers {
	font-weight: 700;
}
@media not all and (min-width: 600px) {
	.pagination .page-numbers,
	.pagination .post-numbers {
		font-size: 12px;
		min-width: 28px;
		height: 28px;
	}
}
.pagination .page-numbers:not(.dots),
.pagination .post-numbers:not(.dots) {
	color: #121212;
	background-color: #f3f3f3;
}
.pagination .page-numbers:not(.dots):hover,
.pagination .post-numbers:not(.dots):hover {
	color: #fff;
	background-color: #121212;
}
.pagination .page-numbers.current,
.pagination .post-numbers.current {
	color: #fff;
	background-color: #121212;
}

/* 検索フォーム */
.c-searchForm .c-searchForm__s {
	border: 1px solid #bbb;
	padding: 0.5em 4em 0.5em 1.5em;
}
.c-searchForm .c-searchForm__submit {
	color: #121212;
	font-size: 20px;
	border-left: 1px solid #ddd;
	width: 2.5em;
	padding: 0.25em 0.75em 0.25em 0.5em;
}

/* セレクトボックス */
.widget_archive select,
.widget_categories select,
.wp-block-archives-dropdown select,
.wp-block-categories-dropdown select {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='currentColor' d='M6.984 9.984h10.031l-5.016 5.016z'/></svg>");
	background-size: 2rem 2rem;
	border: 1px solid #bbb;
	border-radius: 4px;
}

/* コンタクトフォーム */
.wpcf7 .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) {
	.wpcf7 .form-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.wpcf7 .form-row:not(:first-child) {
	margin-top: 2rem;
}
@media not all and (min-width: 1000px) {
	.wpcf7 .form-row:not(:first-child) {
		margin-top: 1rem;
	}
}
.wpcf7 .form-label {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	min-width: 200px;
	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;
}
.wpcf7 .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) {
	.wpcf7 .form-label .label-title {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		gap: 10px;
		padding: 0;
	}
}
.wpcf7 .form-label .label-title .label-text {
	font-weight: 500;
}
.wpcf7 .form-label .label-title .label-type {
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	border-radius: 4px;
	padding: 4px 6px;
	white-space: nowrap;
}
.wpcf7 .form-label .label-title .label-type.required {
	color: #fff;
	background-color: #f45d45;
}
.wpcf7 .form-label .label-title .label-type.optional {
	color: #666;
	background-color: #e7e7e7;
}
.wpcf7 .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) {
	.wpcf7 .form-body {
		margin-left: 2rem;
	}
}
@media not all and (min-width: 1000px) {
	.wpcf7 .form-body {
		-ms-flex-item-align: auto;
		    align-self: auto;
		margin-top: 0.5rem;
	}
}
.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=email],
.wpcf7 input[type=url],
.wpcf7 input[type=date],
.wpcf7 input[type=number],
.wpcf7 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;
}
.wpcf7 input[type=text]::-webkit-input-placeholder, .wpcf7 input[type=tel]::-webkit-input-placeholder, .wpcf7 input[type=email]::-webkit-input-placeholder, .wpcf7 input[type=url]::-webkit-input-placeholder, .wpcf7 input[type=date]::-webkit-input-placeholder, .wpcf7 input[type=number]::-webkit-input-placeholder, .wpcf7 textarea::-webkit-input-placeholder {
	color: #ccc;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=date]::-moz-placeholder, .wpcf7 input[type=number]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
	color: #ccc;
}
.wpcf7 input[type=text]:-ms-input-placeholder, .wpcf7 input[type=tel]:-ms-input-placeholder, .wpcf7 input[type=email]:-ms-input-placeholder, .wpcf7 input[type=url]:-ms-input-placeholder, .wpcf7 input[type=date]:-ms-input-placeholder, .wpcf7 input[type=number]:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
	color: #ccc;
}
.wpcf7 input[type=text]::-ms-input-placeholder, .wpcf7 input[type=tel]::-ms-input-placeholder, .wpcf7 input[type=email]::-ms-input-placeholder, .wpcf7 input[type=url]::-ms-input-placeholder, .wpcf7 input[type=date]::-ms-input-placeholder, .wpcf7 input[type=number]::-ms-input-placeholder, .wpcf7 textarea::-ms-input-placeholder {
	color: #ccc;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=url]::placeholder,
.wpcf7 input[type=date]::placeholder,
.wpcf7 input[type=number]::placeholder,
.wpcf7 textarea::placeholder {
	color: #ccc;
}
.wpcf7 textarea {
	height: 15em;
}
.wpcf7 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;
}
.wpcf7 .wpcf7-not-valid-tip {
	font-size: smaller;
	font-weight: 500;
	color: #f45d45;
}
.wpcf7 .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) {
	.wpcf7 .submit-btn {
		margin-top: 1.5rem;
	}
}
.wpcf7 .submit-btn input[type=submit] {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	cursor: pointer;
	color: #fff;
	background: #f4b545;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	line-height: 1.5;
	padding: 0.875em 2em;
	-webkit-transition-property: -webkit-filter;
	transition-property: -webkit-filter;
	transition-property: filter;
	transition-property: filter, -webkit-filter;
	-webkit-transition-duration: 0.25s;
	        transition-duration: 0.25s;
}
.wpcf7 .submit-btn input[type=submit]:hover {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.wpcf7 .wpcf7-spinner {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.wpcf7 .wpcf7-turnstile {
	text-align: center;
	margin-top: 2rem !important;
}

/* Lightbox */
.wp-lightbox-overlay .scrim {
	background-color: #000 !important;
	opacity: 0.75 !important;
}
.wp-lightbox-overlay .close-button svg {
	color: #fff;
	width: 30px !important;
	height: 30px !important;
}
.wp-lightbox-overlay .wp-block-image img {
	border-radius: unset !important;
}

/* テーブル */
.wp-block-table {
	--ark-color--border--table: #ccc;
}
.wp-block-table table {
	border-right: none;
}
.wp-block-table th,
.wp-block-table td {
	padding: 1em !important;
}
@media not all and (min-width: 600px) {
	.wp-block-table th,
	.wp-block-table td {
		padding: 0.75em !important;
	}
}
.wp-block-table thead th {
	color: #333;
	background-color: #f3f3f3;
}
.wp-block-table thead th:first-child {
	border-left: none;
}
.wp-block-table tbody th {
	background-color: #f3f3f3;
	font-weight: 700;
	border-left: none;
}
.wp-block-table tbody td {
	background-color: transparent;
}

/* ヘッダー */
.l-header {
	-webkit-box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 4px 10px -4px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1000px) {
	.l-header {
		-webkit-transition: -webkit-transform 0.6s ease;
		transition: -webkit-transform 0.6s ease;
		transition: transform 0.6s ease;
		transition: transform 0.6s ease, -webkit-transform 0.6s ease;
	}
	html.is-loading body.home .l-header {
		-webkit-transform: translateY(calc(var(--ark-header_height) * -1));
		        transform: translateY(calc(var(--ark-header_height) * -1));
		-webkit-transition-delay: 0s;
		        transition-delay: 0s;
	}
	html.is-loaded body.home .l-header {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		-webkit-transition-delay: 0.8s;
		        transition-delay: 0.8s;
	}
	body.home .l-header {
		position: fixed;
	}
}
.l-header .l-header__body {
	max-width: calc(1500px + var(--ark-padding--container) * 2);
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__body {
		grid-template-columns: auto 1fr auto var(--ark-searchW) var(--ark-drawerW);
	}
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__center {
		padding: 10px 0;
	}
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__logo {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}

/* Gナビ */
.c-gnavWrap {
	position: inherit !important;
}

.c-gnav {
	font-size: 15px;
}
@media not all and (min-width: 1200px) {
	.c-gnav {
		font-size: 14px;
	}
}
.c-gnav .c-gnav__li {
	position: inherit;
}
.c-gnav .c-gnav__li > .c-gnav__a {
	position: inherit;
	padding: 22px 12px;
}
@media not all and (min-width: 1200px) {
	.c-gnav .c-gnav__li > .c-gnav__a {
		padding: 22px 10px;
	}
}
.c-gnav .c-gnav__li:has(.sub-menu) > .c-gnav__a {
	position: relative;
}
.c-gnav .c-gnav__li:has(.sub-menu) > .c-gnav__a::before {
	content: "";
	background-color: #fff;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	width: 1.5em;
	height: 0.75em;
	position: absolute;
	left: 50%;
	bottom: -0.75em;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0.35s;
	transition: opacity 0.5s, visibility 0.35s;
	z-index: 2;
}
.c-gnav .c-gnav__li:has(.sub-menu):focus > .c-gnav__a::before, .c-gnav .c-gnav__li:has(.sub-menu):hover > .c-gnav__a::before {
	opacity: 1;
	visibility: visible;
}
.c-gnav .c-gnav__li.contact {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	margin-left: 1rem;
}
@media not all and (min-width: 1200px) {
	.c-gnav .c-gnav__li.contact {
		margin-left: 10px;
	}
}
.c-gnav .c-gnav__li.contact > .c-gnav__a {
	color: #fff;
	background: #f4b545;
	border-radius: 8px;
	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: 0.875rem 2rem;
	-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 .c-gnav__li.contact > .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="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></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="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></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;
	margin-right: 4px;
}
.c-gnav .c-gnav__li.contact > .c-gnav__a:hover {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.c-gnav .c-gnav__li.contact .__mainText {
	font-family: var(--montserrat);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}
.c-gnav .__mainText {
	font-weight: 500;
}
.c-gnav .__subText {
	color: #f4b545;
	font-family: var(--montserrat);
	font-size: 12px;
	font-weight: 500;
	opacity: 1;
	top: 0;
	margin-top: 10px;
}
.c-gnav .c-gnav__depth1 {
	-webkit-box-shadow: unset;
	        box-shadow: unset;
	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;
	width: 100%;
	max-width: calc(var(--ark-width--container) + 3rem);
}
.c-gnav .c-gnav__depth1::before {
	content: none;
}
.c-gnav .c-gnav__depth1::after {
	content: "";
	background: #f3f3f3;
	-webkit-box-shadow: inset 0 4px 10px -4px rgba(0, 0, 0, 0.2), 0 4px 10px -4px rgba(0, 0, 0, 0.2);
	        box-shadow: inset 0 4px 10px -4px rgba(0, 0, 0, 0.2), 0 4px 10px -4px rgba(0, 0, 0, 0.2);
	width: auto;
	height: auto;
	position: absolute;
	inset: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	z-index: -1;
}
.c-gnav .sub-menu {
	color: #333;
	background: transparent;
	padding: 0.75rem;
}
.c-gnav .sub-menu .menu-item {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 25%;
	        flex: 1 1 25%;
	max-width: 25%;
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}
.c-gnav .sub-menu .menu-item.recruitment {
	--image-src: url(../img/menu-recruitment.jpg);
}
.c-gnav .sub-menu .menu-item.registered-support {
	--image-src: url(../img/menu-registered-support.jpg);
}
.c-gnav .sub-menu .menu-item.global-internship {
	--image-src: url(../img/menu-global-internship.jpg);
}
.c-gnav .sub-menu .menu-item.engineer-staffing {
	--image-src: url(../img/menu-engineer-staffing.jpg);
}
.c-gnav .sub-menu .menu-item.overview {
	--image-src: url(../img/menu-overview.jpg);
}
.c-gnav .sub-menu .menu-item.access {
	--image-src: url(../img/menu-access.jpg);
}
.c-gnav .sub-menu .menu-item.message {
	--image-src: url(../img/menu-message.jpg);
}
.c-gnav .sub-menu .menu-item.philosophy {
	--image-src: url(../img/menu-philosophy.jpg);
}
.c-gnav .sub-menu .menu-item:not(:last-child) {
	border-bottom: none;
}
.c-gnav .sub-menu .menu-item:hover {
	color: #f4b545;
}
.c-gnav .sub-menu .menu-item:hover .c-gnav__a::before {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.c-gnav .sub-menu .c-gnav__a {
	font-size: 15px;
	padding: 0.75rem;
}
.c-gnav .sub-menu .c-gnav__a::before {
	content: "";
	background-color: transparent;
	background-image: var(--image-src);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	aspect-ratio: 3/2;
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	top: unset;
	left: unset;
	-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 .sub-menu .__mainText {
	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;
	gap: 0.5em;
	margin-top: 0.75rem;
}
.c-gnav .sub-menu .__mainText::after {
	content: "";
	background-color: currentColor;
	-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXJDaXJjbGVSaWdodCIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxwYXRoIGQ9Ik0yODAuMiAxNTAuMkMyNzMuMSAxNDMuOCAyNjIuMSAxNDIuMiAyNTQuMyAxNDYuMVMyMzkuMSAxNTguNSAyMzkuMSAxNjcuMWwuMDAyIDU2TDE1MiAyMjRDMTM4LjggMjI0IDEyOCAyMzQuOCAxMjggMjQ4djE2QzEyOCAyNzcuMyAxMzguOCAyODggMTUyIDI4OEwyNDAgMjg3LjF2NTZjMCA5LjUzMSA1LjY1NiAxOC4xNiAxNC4zOCAyMmM4Ljc1IDMuODEyIDE4LjkxIDIuMDk0IDI1LjkxLTQuMzc1bDk2LTg4Ljc1QzM4MS4yIDI2OC4zIDM4NCAyNjEuOSAzODQgMjU1LjJjLS4zMTI1LTcuNzgxLTIuODc1LTEzLjI1LTcuODQ0LTE3Ljc1TDI4MC4yIDE1MC4yek0yNTYgMEMxMTQuNiAwIDAgMTE0LjYgMCAyNTZzMTE0LjYgMjU2IDI1NiAyNTZzMjU2LTExNC42IDI1Ni0yNTZTMzk3LjQgMCAyNTYgMHpNMjU2IDQ2NGMtMTE0LjcgMC0yMDgtOTMuMzEtMjA4LTIwOFMxNDEuMyA0OCAyNTYgNDhzMjA4IDkzLjMxIDIwOCAyMDhTMzcwLjcgNDY0IDI1NiA0NjR6Ij48L3BhdGg+PC9zdmc+);
	        mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXJDaXJjbGVSaWdodCIgdmlld0JveD0iMCAwIDUxMiA1MTIiPjxwYXRoIGQ9Ik0yODAuMiAxNTAuMkMyNzMuMSAxNDMuOCAyNjIuMSAxNDIuMiAyNTQuMyAxNDYuMVMyMzkuMSAxNTguNSAyMzkuMSAxNjcuMWwuMDAyIDU2TDE1MiAyMjRDMTM4LjggMjI0IDEyOCAyMzQuOCAxMjggMjQ4djE2QzEyOCAyNzcuMyAxMzguOCAyODggMTUyIDI4OEwyNDAgMjg3LjF2NTZjMCA5LjUzMSA1LjY1NiAxOC4xNiAxNC4zOCAyMmM4Ljc1IDMuODEyIDE4LjkxIDIuMDk0IDI1LjkxLTQuMzc1bDk2LTg4Ljc1QzM4MS4yIDI2OC4zIDM4NCAyNjEuOSAzODQgMjU1LjJjLS4zMTI1LTcuNzgxLTIuODc1LTEzLjI1LTcuODQ0LTE3Ljc1TDI4MC4yIDE1MC4yek0yNTYgMEMxMTQuNiAwIDAgMTE0LjYgMCAyNTZzMTE0LjYgMjU2IDI1NiAyNTZzMjU2LTExNC42IDI1Ni0yNTZTMzk3LjQgMCAyNTYgMHpNMjU2IDQ2NGMtMTE0LjcgMC0yMDgtOTMuMzEtMjA4LTIwOFMxNDEuMyA0OCAyNTYgNDhzMjA4IDkzLjMxIDIwOCAyMDhTMzcwLjcgNDY0IDI1NiA0NjR6Ij48L3BhdGg+PC9zdmc+);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	display: inline-block;
	width: 1.125em;
	height: 1.125em;
	-webkit-transition: background-color 0.25s;
	transition: background-color 0.25s;
}

/* ドロワーナビ */
[data-drawer=opened] .l-header__center {
	z-index: 2;
}
[data-drawer=opened] .c-headLogo {
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
}

.l-header__drawerBtn .c-iconBtn__icon {
	width: 30px;
	height: 30px;
}

.p-drawer {
	--ark-menulist_border: 1px solid #666;
	--ark-nav-padding--Y: 0.875rem;
	font-size: 1rem;
}
.p-drawer .c-drawerNav {
	border-top: none;
}
.p-drawer .sub-menu.is-opened {
	border-top: 1px solid #666;
}
.p-drawer .drawer-cta {
	margin-top: 1.5rem;
}
.p-drawer .tel-button .ark-block-button__link {
	background: transparent;
	padding: 0 0 0 1rem;
}
.p-drawer .tel-button .ark-block-button__icon {
	fill: #fff;
	-webkit-transform: scale(1.5) translateX(-0.25em);
	        transform: scale(1.5) translateX(-0.25em);
}
.p-drawer .tel-button .ark-block-button__text {
	color: #fff;
	font-family: var(--montserrat);
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.1;
}
.p-drawer .tel-times {
	font-size: 0.875rem;
	line-height: 1;
	margin-top: 0.375rem;
}
.p-drawer .mail-button .ark-block-button__link {
	background: #f4b545;
	padding: 0.875em 2em;
}

/* トップエリア */
.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 .p-topArea__body {
	color: #333;
	text-shadow: unset;
}
.p-topArea .p-topArea__title {
	text-align: left;
}
.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 {
	color: #f4b545;
	font-family: var(--montserrat);
	font-size: 1.125rem;
	font-weight: 600;
	font-style: normal;
	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 .c-pageTitle__sub .arkb-format-reveal {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
.p-topArea .c-pageTitle__sub .arkb-format-reveal::before {
	-webkit-animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
	        animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
}

/* ページリンク */
.page-nav-buttons {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 1.5rem;
}
.page-nav-buttons .page-nav-button {
	background-color: #fff;
	border: 1px solid #898989;
	border-radius: 8px;
	display: grid;
	grid-template-columns: -webkit-max-content 1fr -webkit-min-content;
	grid-template-columns: max-content 1fr min-content;
	grid-template-rows: auto;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0.75rem;
}
@media (min-width: 1000px) {
	.page-nav-buttons .page-nav-button:nth-child(1) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	.page-nav-buttons .page-nav-button:nth-child(2) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
	.page-nav-buttons .page-nav-button:nth-child(3) {
		-webkit-animation-delay: 0.75s;
		        animation-delay: 0.75s;
	}
}
.page-nav-buttons .page-nav-button > :not(:first-child) {
	margin-top: 0;
}
.page-nav-buttons .page-nav-button:hover .page-nav-image img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
.page-nav-buttons .page-nav-image {
	grid-column: 1/2;
	grid-row: 1/3;
	background-color: #f3f3f3;
	border-radius: 9999px;
	aspect-ratio: 1/1;
	max-width: 80px;
	margin-right: 0.75rem;
}
@media not all and (min-width: 600px) {
	.page-nav-buttons .page-nav-image {
		max-width: 60px;
	}
}
.page-nav-buttons .page-nav-image img {
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
.page-nav-buttons .page-nav-subtitle {
	grid-column: 2/3;
	grid-row: 1/2;
	align-self: end;
	color: #f4b545;
	font-family: var(--montserrat);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.5;
}
@media not all and (min-width: 600px) {
	.page-nav-buttons .page-nav-subtitle {
		font-size: 0.875rem;
	}
}
.page-nav-buttons .page-nav-title {
	grid-column: 2/3;
	grid-row: 2/3;
	align-self: start;
	font-size: 1.25rem;
}
.page-nav-buttons .page-nav-icon {
	grid-column: 3/4;
	grid-row: 1/3;
	color: #898989;
}

/* ホーム | Hero */
section.hero {
	--arkb-padding: 4rem 0;
}
@media not all and (min-width: 1000px) {
	section.hero {
		--arkb-padding: 3rem 0;
		min-height: auto;
	}
}
section.hero .ark-block-section__body {
	max-width: calc(1500px + var(--ark-padding--container, 0px) * 2);
	height: calc(var(--ark-100vh, 100vh) - var(--ark-adminbar_height));
	max-height: 950px;
	min-height: 700px;
}
@media not all and (min-width: 1000px) {
	section.hero .ark-block-section__body {
		height: var(--ark-height--full);
		min-height: 800px;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media not all and (min-width: 600px) {
	section.hero .ark-block-section__body {
		max-height: 600px;
		min-height: inherit;
	}
}
section.hero .hero-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 1rem;
}
section.hero .hero-columns .ark-block-columns__inner {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
section.hero .hero-columns .text-col {
	z-index: 1;
}
section.hero h2.hero-catch {
	font-size: 4rem;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9), 0px 0px 4px rgba(0, 0, 0, 0.9), 0px 0px 8px rgba(0, 0, 0, 0.9), 0px 0px 16px rgba(0, 0, 0, 0.9);
}
@media not all and (min-width: 1300px) {
	section.hero h2.hero-catch {
		font-size: 3rem;
	}
}
@media not all and (min-width: 600px) {
	section.hero h2.hero-catch {
		font-size: 2rem;
	}
}
section.hero h2.hero-catch.wipe-reveal.fired .arkb-format-reveal:nth-of-type(2) {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
section.hero h2.hero-catch.wipe-reveal.fired .arkb-format-reveal:nth-of-type(2)::before {
	-webkit-animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
	        animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
}
section.hero .hero-text {
	font-size: 2rem;
	font-weight: 700;
	text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.9), 0px 0px 4px rgba(0, 0, 0, 0.9), 0px 0px 8px rgba(0, 0, 0, 0.9), 0px 0px 16px rgba(0, 0, 0, 0.9);
	margin-top: 1em;
}
@media not all and (min-width: 1300px) {
	section.hero .hero-text {
		font-size: 1.5rem;
	}
}
@media not all and (min-width: 600px) {
	section.hero .hero-text {
		font-size: 1.125rem;
	}
}
section.hero .hero-text.wipe-reveal.fired .arkb-format-reveal:nth-of-type(1) {
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
section.hero .hero-text.wipe-reveal.fired .arkb-format-reveal:nth-of-type(1)::before {
	-webkit-animation-delay: 0.5s, calc(var(--wipe-in) + 0.5s);
	        animation-delay: 0.5s, calc(var(--wipe-in) + 0.5s);
}
section.hero .hero-text.wipe-reveal.fired .arkb-format-reveal:nth-of-type(2) {
	-webkit-animation-delay: 0.75s;
	        animation-delay: 0.75s;
}
section.hero .hero-text.wipe-reveal.fired .arkb-format-reveal:nth-of-type(2)::before {
	-webkit-animation-delay: 0.75s, calc(var(--wipe-in) + 0.75s);
	        animation-delay: 0.75s, calc(var(--wipe-in) + 0.75s);
}
section.hero .hero-image {
	margin-left: -150px;
	margin-right: -100px;
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
@media not all and (min-width: 1000px) {
	section.hero .hero-image {
		margin-left: 0;
		margin-right: 0;
	}
}
@media not all and (min-width: 600px) {
	section.hero .hero-image {
		margin-left: -50px;
		margin-right: -50px;
	}
}
section.hero .hero-marquee {
	position: absolute;
	left: 0;
	bottom: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	pointer-events: none;
}
section.hero .hero-marquee__inner {
	width: 100%;
	overflow: hidden;
}
section.hero .hero-marquee__track {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	white-space: nowrap;
	will-change: transform;
	-webkit-animation: marqueeLoop 30s linear infinite;
	        animation: marqueeLoop 30s linear infinite;
}
section.hero .hero-marquee__text {
	color: #fff;
	font-family: var(--montserrat);
	font-size: clamp(4rem, 7vw, 6rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.2;
	padding-right: 2rem;
	opacity: 0.2;
}

/* ホーム | About Us */
section.about .ark-block-section__img {
	-o-object-fit: contain;
	   object-fit: contain;
}
@media not all and (min-width: 600px) {
	section.about .ark-block-section__img {
		-o-object-position: top;
		   object-position: top;
	}
}
section.about .ark-block-heading.wipe-reveal.fired h2.ark-block-heading__main .arkb-format-reveal:nth-of-type(1) {
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
}
section.about .ark-block-heading.wipe-reveal.fired h2.ark-block-heading__main .arkb-format-reveal:nth-of-type(1)::before {
	-webkit-animation-delay: 0s, calc(var(--wipe-in) + 0s);
	        animation-delay: 0s, calc(var(--wipe-in) + 0s);
}
section.about .ark-block-heading.wipe-reveal.fired h2.ark-block-heading__main .arkb-format-reveal:nth-of-type(2) {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
section.about .ark-block-heading.wipe-reveal.fired h2.ark-block-heading__main .arkb-format-reveal:nth-of-type(2)::before {
	-webkit-animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
	        animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
}
section.about .about-container {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
@media (min-width: 1000px) {
	section.about .about-container > p {
		font-size: 1.125rem;
		text-align: center;
	}
}
section.about .about-container > :not(:first-child) {
	margin-top: 1em;
}
section.about .ark-block-buttons {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}

/* ホーム | サービス紹介 */
section.service .service-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;
}
section.service .service-column {
	background-color: #fff;
	border: 1px solid #898989;
	border-radius: 8px;
	display: grid;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
	grid-template-rows: min-content 1fr min-content;
	gap: 0.75rem 1rem;
	padding: 1.25rem;
}
@media (min-width: 1000px) {
	section.service .service-column:nth-child(1) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.service .service-column:nth-child(2) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
	section.service .service-column:nth-child(3) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.service .service-column:nth-child(4) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
@media not all and (min-width: 1000px) {
	section.service .service-column {
		padding: 1rem;
	}
	section.service .service-column:not(:first-child) {
		border-top: 1px solid #898989;
	}
}
section.service .service-column > :not(:first-child) {
	margin-top: 0;
}
section.service .service-column:hover .service-image img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
section.service .service-image {
	grid-column: 1/2;
	grid-row: 1/4;
	aspect-ratio: 1/1;
	max-width: 180px;
	overflow: hidden;
}
@media (min-width: 600px) {
	section.service .service-image {
		background-color: #f3f3f3;
	}
}
@media not all and (min-width: 1000px) {
	section.service .service-image {
		max-width: 150px;
	}
}
@media not all and (min-width: 600px) {
	section.service .service-image {
		grid-row: 1/2;
		max-width: 80px;
		-webkit-filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.1));
		        filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.1));
	}
}
section.service .service-image img {
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
section.service .service-title-group {
	grid-column: 2/3;
	grid-row: 1/2;
}
@media not all and (min-width: 1000px) {
	section.service .service-title-group {
		-ms-flex-item-align: center;
		    align-self: center;
	}
}
section.service .service-title-group > :not(:first-child) {
	margin-top: 0;
}
section.service .service-subtitle {
	color: #f4b545;
	font-family: var(--montserrat);
	font-weight: 600;
	line-height: 1.5;
}
@media not all and (min-width: 600px) {
	section.service .service-subtitle {
		font-size: 0.875rem;
	}
}
section.service .service-text {
	grid-column: 2/3;
	grid-row: 2/3;
	line-height: 1.5;
}
@media not all and (min-width: 600px) {
	section.service .service-text {
		grid-column: 1/3;
		grid-row: 2/3;
	}
}
section.service .more-text {
	grid-column: 2/3;
	grid-row: 3/4;
	color: #898989;
	font-family: var(--montserrat);
	font-size: 0.75rem;
	font-weight: 500;
	text-align: right;
	letter-spacing: 0;
	line-height: 1.5;
	-webkit-transform: translate(10px, 10px);
	        transform: translate(10px, 10px);
}
@media not all and (min-width: 1000px) {
	section.service .more-text {
		-webkit-transform: unset;
		        transform: unset;
	}
}
@media not all and (min-width: 600px) {
	section.service .more-text {
		grid-column: 1/3;
	}
}
section.service .more-text .arkb-inline-icon {
	font-size: 1.375em;
	margin-left: 0.25rem;
}

/* ホーム | 選ばれる理由 */
section.reason .reason-columns {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-padding--default: 0;
	--arkb-padding: var(--arkb-padding--default);
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
	border: 1px solid #898989;
	border-radius: 8px;
	overflow: hidden;
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
section.reason .reason-column {
	padding: 1.5rem 1.5rem 1rem;
}
section.reason .reason-column:not(:first-child)::before {
	content: "";
	background-color: #898989;
	width: 1px;
	height: calc(100% - 2.5rem);
	position: absolute;
	top: 1.5rem;
	left: 0;
}
@media not all and (min-width: 1000px) {
	section.reason .reason-column:not(:first-child)::before {
		width: calc(100% - 3rem);
		height: 1px;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
section.reason .reason-column:hover .reason-image img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
section.reason .reason-head {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
section.reason .reason-head > :not(:first-child) {
	--ark-mt--inner: 0;
}
section.reason .reason-num {
	color: #fff;
	background-color: #121212;
	font-family: var(--montserrat);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1;
	border-radius: 0 0 1.5rem 0;
	width: 4.25rem;
	height: 4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	padding-bottom: 4px;
	z-index: 1;
}
section.reason .reason-image {
	overflow: hidden;
}
section.reason .reason-image img {
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
section.reason .reason-body > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
section.reason .reason-title {
	text-align: center;
}
section.reason .reason-text {
	line-height: 1.5;
}
section.reason .more-text {
	color: #898989;
	font-family: var(--montserrat);
	font-size: 0.75rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0;
	line-height: 1.5;
}
@media (min-width: 1000px) {
	section.reason .more-text {
		grid-column: 2/3;
		grid-row: 3/4;
	}
}
section.reason .more-text .arkb-inline-icon {
	font-size: 1.375em;
	margin-left: 0.25rem;
}

/* ニュース＆コラム */
section.articles .ark-block-section__bodyInner {
	display: grid;
	grid-template-columns: 1fr -webkit-max-content;
	grid-template-columns: 1fr max-content;
	grid-template-rows: -webkit-min-content 1fr;
	grid-template-rows: min-content 1fr;
	gap: 2rem 1rem;
}
section.articles .ark-block-section__bodyInner > :not(:first-child) {
	margin-top: 0;
}
section.articles .ark-block-heading {
	grid-column: 1/2;
	grid-row: 1/2;
}
section.articles .articles-buttons {
	grid-column: 2/3;
	grid-row: 1/2;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
section.articles .articles-buttons .ark-block-button__link {
	padding: 0.625em 1.5em;
}
section.articles .articles-postList {
	grid-column: 1/3;
	grid-row: 2/3;
	border: 1px solid #898989;
	border-radius: 8px;
	padding: 2rem;
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
@media not all and (min-width: 600px) {
	section.articles .articles-postList {
		border-width: 1px 0 1px 0;
		border-radius: 0;
		padding: 1rem 0;
	}
}
section.articles .articles-postList .p-postList__item {
	margin-bottom: 0;
}
section.articles .articles-postList .p-postList__item:not(:last-child) {
	border-bottom: 1px solid #898989;
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
}
@media not all and (min-width: 600px) {
	section.articles .articles-postList .p-postList__item:not(:last-child) {
		padding-bottom: 1rem;
		margin-bottom: 1rem;
	}
}
section.articles .articles-postList .p-postList__thumb {
	max-width: 300px;
}
@media not all and (min-width: 600px) {
	section.articles .articles-postList .p-postList__thumb {
		max-width: 100px;
	}
}
@media (min-width: 1000px) {
	section.articles .articles-postList .p-postList__meta {
		margin-bottom: 0.75rem;
	}
}
@media (min-width: 1000px) {
	section.articles .articles-postList .p-postList__title {
		-webkit-line-clamp: 1;
	}
}
section.articles .articles-postList .p-postList__excerpt {
	font-size: 1rem;
}
@media (min-width: 1000px) {
	section.articles .articles-postList .p-postList__excerpt {
		margin-top: 0.75rem;
	}
}

/* ホーム | お問い合わせ */
section.cta .ark-block-section__bodyInner {
	position: relative;
}
section.cta .ark-block-heading {
	--wipe-bg: #fff;
}
section.cta .cta-text {
	font-weight: 600;
	text-align: center;
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
section.cta .cta-columns {
	--arkb-gap--x: 0rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
section.cta .tel-button .ark-block-button__link {
	background: transparent;
	padding: 0 0 0 1rem;
}
section.cta .tel-button .ark-block-button__icon {
	fill: #fff;
	-webkit-transform: scale(1.5) translateX(-0.25em);
	        transform: scale(1.5) translateX(-0.25em);
}
section.cta .tel-button .ark-block-button__text {
	color: #fff;
	font-family: var(--montserrat);
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.1;
}
@media not all and (min-width: 1000px) {
	section.cta .tel-button .ark-block-button__text {
		font-size: 2rem;
	}
}
section.cta .tel-times {
	font-size: 0.875rem;
	line-height: 1;
	margin-top: 0.375rem;
}
section.cta .mail-button .ark-block-button__link {
	background: #f4b545;
	padding: 0.875em 3em;
}
@media not all and (min-width: 1000px) {
	section.cta .mail-button .ark-block-button__link {
		padding: 0.875em 2em;
	}
}
@media (min-width: 1000px) {
	section.cta .mail-button .ark-block-button__text {
		font-size: 1.125rem;
	}
}
section.cta .cta-image-01 {
	--img-size: min(20vw, 250px);
	width: var(--img-size);
	position: absolute;
	top: 50%;
	left: calc(var(--img-size) * -0.375);
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	margin-top: 0;
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
@media not all and (min-width: 1000px) {
	section.cta .cta-image-01 {
		--img-size: 125px;
		top: 1.5rem;
		left: 0;
		-webkit-transform: unset;
		        transform: unset;
	}
}
@media not all and (min-width: 600px) {
	section.cta .cta-image-01 {
		--img-size: 85px;
	}
}
section.cta .cta-image-02 {
	--img-size: min(20vw, 250px);
	width: var(--img-size);
	position: absolute;
	top: 50%;
	right: calc(var(--img-size) * -0.375);
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	margin-top: 0;
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
@media not all and (min-width: 1000px) {
	section.cta .cta-image-02 {
		--img-size: 125px;
		top: 1.5rem;
		right: 0;
		-webkit-transform: unset;
		        transform: unset;
	}
}
@media not all and (min-width: 600px) {
	section.cta .cta-image-02 {
		--img-size: 85px;
	}
}

/* サービス一覧 */
body.slug-service section.service-archive .ark-block-section__bodyInner > :not(:first-child) {
	--ark-mt--inner: 3rem;
}
@media not all and (min-width: 600px) {
	body.slug-service section.service-archive .ark-block-section__bodyInner > :not(:first-child) {
		--ark-mt--inner: 2rem;
	}
}
body.slug-service .service-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
}
@media (min-width: 1000px) {
	body.slug-service .service-columns.right-image .service-body {
		margin-right: -1.5rem;
	}
	body.slug-service .service-columns.right-image .service-image {
		margin-left: -1.5rem;
	}
	body.slug-service .service-columns.left-image .service-body {
		margin-left: -1.5rem;
	}
	body.slug-service .service-columns.left-image .service-image {
		margin-right: -1.5rem;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-service .service-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-service .service-columns.left-image .ark-block-columns__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	body.slug-service .service-columns .service-body {
		position: relative;
		margin-top: -3rem;
		z-index: 1;
	}
	body.slug-service .service-columns .service-image {
		margin-left: -3rem;
		margin-right: -3rem;
	}
	body.slug-service .service-columns .service-image img {
		aspect-ratio: 2/1;
		-o-object-fit: cover;
		   object-fit: cover;
	}
}
body.slug-service .service-columns .ark-block-columns__inner {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (min-width: 1000px) {
	body.slug-service .service-image img {
		aspect-ratio: 4/3;
		-o-object-fit: cover;
		   object-fit: cover;
	}
}
body.slug-service .service-body {
	background-color: #fff;
	border: 1px solid #898989;
	border-radius: 8px;
	display: grid;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-template-rows: auto auto 1fr -webkit-min-content;
	grid-template-rows: auto auto 1fr min-content;
	gap: 0 1rem;
	padding: 2rem;
	position: relative;
	z-index: 1;
}
@media not all and (min-width: 600px) {
	body.slug-service .service-body {
		padding: 1.25rem;
	}
}
body.slug-service .service-body > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
body.slug-service .service-art {
	grid-column: 1/2;
	grid-row: 1/3;
	max-width: 125px;
	-webkit-filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.1));
	        filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.1));
}
@media not all and (min-width: 600px) {
	body.slug-service .service-art {
		max-width: 80px;
	}
}
body.slug-service .service-subtitle {
	grid-column: 2/3;
	grid-row: 1/2;
	align-self: end;
	color: #f4b545;
	font-family: var(--montserrat);
	font-weight: 600;
	line-height: 1.5;
	margin-top: 0;
}
body.slug-service .service-title {
	grid-column: 2/3;
	grid-row: 2/3;
	align-self: start;
	margin-top: 0;
}
body.slug-service .service-title .arkb-format-reveal {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
body.slug-service .service-title .arkb-format-reveal::before {
	-webkit-animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
	        animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
}
body.slug-service .service-text {
	grid-column: 1/3;
	grid-row: 3/4;
}
body.slug-service .service-buttons {
	grid-column: 1/3;
	grid-row: 4/5;
}

@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: -webkit-min-content 1fr;
		grid-template-rows: min-content 1fr;
		gap: 1.5rem 3rem;
	}
	body.parent-slug-service .service-lead-container > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-title {
		grid-column: 1/2;
		grid-row: 1/2;
		font-size: 2em;
	}
}
body.parent-slug-service .service-lead-title .arkb-format-reveal:nth-of-type(2) {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
body.parent-slug-service .service-lead-title .arkb-format-reveal:nth-of-type(2)::before {
	-webkit-animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
	        animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
}
@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-image {
		grid-column: 2/3;
		grid-row: 1/3;
	}
}
body.parent-slug-service .service-detail-columns {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 1.5rem;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .service-detail-columns {
		--arkb-gap--x: 1rem;
		--arkb-gap--y: 1rem;
	}
}
body.parent-slug-service .service-detail-column {
	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: 1rem 0.5rem;
	border-bottom: 1px solid #ccc;
	padding-bottom: 1rem;
}
body.parent-slug-service .service-detail-column > :not(:first-child) {
	margin-top: 0;
}
body.parent-slug-service .service-detail-icon {
	grid-column: 1/2;
	grid-row: 1/2;
	align-self: center;
	color: #f4b545;
	border-radius: 9999px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .service-detail-icon {
		--arkb-icon-size: 2em !important;
	}
}
body.parent-slug-service .service-detail-title {
	grid-column: 2/3;
	grid-row: 1/2;
	align-self: center;
}
body.parent-slug-service .service-detail-text {
	grid-column: 1/3;
	grid-row: 2/3;
}
body.parent-slug-service .service-feature-items {
	border-top: 1px solid #ccc;
}
body.parent-slug-service .service-feature-items > :not(:first-child) {
	margin-top: 0;
}
body.parent-slug-service .service-feature-item {
	display: grid;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-template-rows: -webkit-min-content 1fr;
	grid-template-rows: min-content 1fr;
	gap: 1rem 1.5rem;
	border-bottom: 1px solid #ccc;
	padding: 1.5rem 0;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .service-feature-item {
		gap: 1rem;
	}
}
body.parent-slug-service .service-feature-item > :not(:first-child) {
	margin-top: 0;
}
body.parent-slug-service .service-feature-index {
	grid-column: 1/2;
	grid-row: 1/3;
	align-self: center;
	width: 80px;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .service-feature-index {
		grid-row: 1/2;
		width: 60px;
	}
}
body.parent-slug-service .service-feature-index > :not(:first-child) {
	margin-top: 0;
}
body.parent-slug-service .service-feature-label {
	color: #f4b545;
	font-family: var(--montserrat);
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .service-feature-label {
		font-size: 0.75rem;
	}
}
body.parent-slug-service .service-feature-num {
	color: #d0d0d0;
	font-family: var(--montserrat);
	font-size: 3.5rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .service-feature-num {
		font-size: 2.5rem;
	}
}
body.parent-slug-service .service-feature-title {
	grid-column: 2/3;
	grid-row: 1/2;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .service-feature-title {
		-ms-flex-item-align: center;
		    align-self: center;
	}
}
body.parent-slug-service .service-feature-text {
	grid-column: 2/3;
	grid-row: 2/3;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .service-feature-text {
		grid-column: 1/3;
	}
}
body.parent-slug-service .service-price-table thead th:first-child {
	width: 33.33%;
}
body.parent-slug-service .service-price-table tbody th {
	width: 33.33%;
}

/* 選ばれる理由 */
body.slug-reason section.reason-content .ark-block-section__bodyInner > :not(:first-child) {
	--ark-mt--inner: 3rem;
}
@media not all and (min-width: 600px) {
	body.slug-reason section.reason-content .ark-block-section__bodyInner > :not(:first-child) {
		--ark-mt--inner: 2rem;
	}
}
body.slug-reason .reason-container {
	position: relative;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}
@media (min-width: 1000px) {
	body.slug-reason .reason-container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: -webkit-min-content 1fr;
		grid-template-rows: min-content 1fr;
		gap: 1.5rem 3rem;
	}
	body.slug-reason .reason-container > :not(:first-child) {
		margin-top: 0;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-reason .reason-container {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}
body.slug-reason .reason-container::before {
	content: "";
	background-color: #f3f3f3;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: -1;
}
@media (min-width: 1000px) {
	body.slug-reason .reason-container.right-image .reason-head {
		grid-column: 1/2;
		grid-row: 1/2;
	}
	body.slug-reason .reason-container.right-image .reason-image {
		grid-column: 2/3;
		grid-row: 1/3;
		align-self: center;
	}
	body.slug-reason .reason-container.right-image .reason-body {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}
body.slug-reason .reason-container.right-image::before {
	left: calc(50% - 50vw);
}
@media (min-width: 1000px) {
	body.slug-reason .reason-container.left-image .reason-head {
		grid-column: 2/3;
		grid-row: 1/2;
	}
	body.slug-reason .reason-container.left-image .reason-image {
		grid-column: 1/2;
		grid-row: 1/3;
		align-self: center;
	}
	body.slug-reason .reason-container.left-image .reason-body {
		grid-column: 2/3;
		grid-row: 2/3;
	}
}
body.slug-reason .reason-container.left-image::before {
	right: calc(50% - 50vw);
}
body.slug-reason .reason-head > :not(:first-child) {
	--ark-mt--inner: 2px;
}
body.slug-reason .reason-num {
	color: #d0d0d0;
	font-family: var(--montserrat);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
}
@media not all and (min-width: 600px) {
	body.slug-reason .reason-num {
		font-size: 3rem;
	}
}
body.slug-reason .reason-num .arkb-format-reveal {
	line-height: 1;
}
@media (min-width: 1000px) {
	body.slug-reason .reason-title {
		font-size: 2em;
	}
}
body.slug-reason .reason-title .arkb-format-reveal:nth-of-type(1) {
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
body.slug-reason .reason-title .arkb-format-reveal:nth-of-type(1)::before {
	-webkit-animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
	        animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
}
body.slug-reason .reason-title .arkb-format-reveal:nth-of-type(2) {
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
body.slug-reason .reason-title .arkb-format-reveal:nth-of-type(2)::before {
	-webkit-animation-delay: 0.5s, calc(var(--wipe-in) + 0.5s);
	        animation-delay: 0.5s, calc(var(--wipe-in) + 0.5s);
}
@media (min-width: 1000px) {
	body.slug-reason .reason-body {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}
body.slug-reason .reason-body > :not(:first-child) {
	--ark-mt--inner: 1em;
}

/* よくある質問 */
@media (min-width: 1000px) {
	body.slug-faq .faq-accordion {
		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: 2rem;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__item {
	background-color: #f3f3f3;
	border-radius: 8px;
}
@media (min-width: 1000px) {
	body.slug-faq .faq-accordion .ark-block-accordion__item {
		width: calc(50% - 1rem);
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}
	body.slug-faq .faq-accordion .ark-block-accordion__item:nth-child(even) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__item[open] {
	padding-bottom: 8px;
}
body.slug-faq .faq-accordion .ark-block-accordion__item + .ark-block-accordion__item {
	margin-top: 1.5rem;
}
@media (min-width: 1000px) {
	body.slug-faq .faq-accordion .ark-block-accordion__item + .ark-block-accordion__item {
		margin-top: 0;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__title {
	background: transparent;
	-webkit-box-align: inherit;
	    -ms-flex-align: inherit;
	        align-items: inherit;
	gap: 0.5rem;
	padding: 1rem 1.5rem 1rem 1rem;
}
body.slug-faq .faq-accordion .ark-block-accordion__title::before {
	content: "Q";
	color: #121212;
	font-family: var(--montserrat);
	font-size: 1.5rem;
	font-weight: 500;
	width: 2rem;
	height: 2rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
body.slug-faq .faq-accordion .ark-block-accordion__label {
	font-size: 1.125em;
	font-weight: 500;
	-ms-flex-item-align: center;
	    align-self: center;
	padding-right: 0;
}
body.slug-faq .faq-accordion .ark-block-accordion__icon {
	color: #f4b545;
	-ms-flex-item-align: center;
	    align-self: center;
}
body.slug-faq .faq-accordion .ark-block-accordion__body {
	background-color: #fff;
	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;
	gap: 0.5rem;
	padding: 1rem 1.5rem 1rem 0.5rem;
	margin: 0 8px;
}
body.slug-faq .faq-accordion .ark-block-accordion__body::before {
	content: "A";
	color: #f4b545;
	font-family: var(--montserrat);
	font-size: 1.5rem;
	font-weight: 500;
	width: 2rem;
	height: 2rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
body.slug-faq .faq-accordion .ark-block-accordion__content > :not(:first-child) {
	--ark-mt--inner: 1em;
}

/* お客様の声 */
@media (min-width: 600px) {
	body.slug-voice .voice-container {
		border: 1px solid #898989;
		padding: 3rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-voice .voice-container {
		border-top: 1px solid #898989;
		padding-top: 1.5rem;
	}
}
body.slug-voice .voice-container + .voice-container {
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	body.slug-voice .voice-container + .voice-container {
		margin-top: 2rem;
	}
}
body.slug-voice .voice-head {
	display: grid;
	grid-template-columns: -webkit-max-content 1fr;
	grid-template-columns: max-content 1fr;
	grid-template-rows: auto auto;
	gap: 0.5rem 2rem;
}
@media not all and (min-width: 1000px) {
	body.slug-voice .voice-head {
		gap: 1rem;
	}
}
body.slug-voice .voice-head > :not(:first-child) {
	margin-top: 0;
}
body.slug-voice .voice-image {
	grid-column: 1/2;
	grid-row: 1/3;
	max-width: 150px;
}
@media not all and (min-width: 1000px) {
	body.slug-voice .voice-image {
		grid-row: 1/2;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-voice .voice-image {
		max-width: 100px;
	}
}
@media not all and (min-width: 600px) {
	body.slug-voice .voice-image {
		max-width: 80px;
	}
}
body.slug-voice .voice-client {
	grid-column: 2/3;
	grid-row: 1/2;
	align-self: end;
}
@media not all and (min-width: 1000px) {
	body.slug-voice .voice-client {
		-ms-flex-item-align: center;
		    align-self: center;
	}
}
body.slug-voice .voice-client > :not(:first-child) {
	margin-top: 0.5rem;
}
body.slug-voice .voice-metas .arkb-format-reveal {
	line-height: 2;
}
body.slug-voice .voice-metas mark {
	font-size: 0.875rem;
	line-height: 1;
	border-radius: 4px;
	padding: 2px 6px 4px;
	margin-right: 1em;
}
body.slug-voice .voice-name {
	font-size: 1.125rem;
	font-weight: 500;
	text-align: left;
}
body.slug-voice .voice-name .arkb-format-reveal {
	line-height: 1.5;
	-webkit-animation-delay: 0.25s;
	        animation-delay: 0.25s;
}
body.slug-voice .voice-name .arkb-format-reveal::before {
	-webkit-animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
	        animation-delay: 0.25s, calc(var(--wipe-in) + 0.25s);
}
body.slug-voice .voice-title {
	grid-column: 2/3;
	grid-row: 2/3;
}
@media not all and (min-width: 1000px) {
	body.slug-voice .voice-title {
		grid-column: 1/3;
	}
}
body.slug-voice .voice-title .arkb-format-reveal {
	line-height: 1.5;
	-webkit-animation-delay: 0.5s;
	        animation-delay: 0.5s;
}
body.slug-voice .voice-title .arkb-format-reveal::before {
	-webkit-animation-delay: 0.5s, calc(var(--wipe-in) + 0.5s);
	        animation-delay: 0.5s, calc(var(--wipe-in) + 0.5s);
}
body.slug-voice .voice-detail > :not(:first-child) {
	--ark-mt--inner: 1em;
}
body.slug-voice .voice-detail-title {
	background-color: #f3f3f3;
	border-left: 4px solid #121212;
	padding: 0.375em 0.5em;
}
body.slug-voice .voice-comment {
	background-color: #f3f3f3;
	padding: 1rem 2rem 2rem;
}
body.slug-voice .voice-comment > :not(:first-child) {
	--ark-mt--inner: 1em;
}
body.slug-voice .voice-comment-title {
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.25rem;
}
body.slug-voice .voice-comment-title .arkb-inline-icon {
	font-size: 1.25em;
	margin-right: 0.5rem;
}

/* 会社概要 */
body.slug-about section.about-overview .ark-block-section__bodyInner {
	padding-bottom: 1rem;
}
body.slug-about section.about-overview .section-head {
	background-color: #f3f3f3;
	padding: 1.5rem;
}
@media (min-width: 600px) {
	body.slug-about section.about-overview .section-head {
		padding: 2rem;
	}
}
@media (min-width: 1000px) {
	body.slug-about section.about-overview .section-head {
		display: grid;
		grid-template-columns: 1fr 3fr;
		gap: 3rem;
		padding: 3rem 4rem 9rem;
	}
}
body.slug-about section.about-overview .section-head > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
@media (min-width: 1000px) {
	body.slug-about section.about-overview .section-head > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.slug-about section.about-overview .ark-block-heading {
		grid-column: 1/2;
		text-align: left;
	}
}
@media (min-width: 1000px) {
	body.slug-about section.about-overview .section-body {
		max-width: calc(100% - 8rem);
		margin-top: -7rem;
		margin-left: auto;
		margin-right: auto;
	}
}
body.slug-about .overview-lead {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
}
@media (min-width: 1000px) {
	body.slug-about .overview-lead {
		grid-column: 2/3;
		align-self: center;
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
@media not all and (min-width: 1150px) {
	body.slug-about .overview-lead {
		font-size: 1.25rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .overview-lead {
		font-size: 1rem;
	}
}
body.slug-about .overview-table {
	background-color: #fff;
	border: 1px solid #898989;
	padding: 3rem;
}
@media (min-width: 1000px) {
	body.slug-about .overview-table {
		-webkit-animation-delay: 0.75s;
		        animation-delay: 0.75s;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-about .overview-table {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .overview-table {
		border: none;
		padding: 0;
	}
}
body.slug-about .overview-table th {
	width: 25%;
}
body.slug-about .overview-buttons {
	--arkb-clmn-w--pc: 50%;
	--arkb-gap--x: 2rem;
}
body.slug-about section.about-access .section-head {
	background-color: #f3f3f3;
	padding: 1.5rem;
}
@media (min-width: 600px) {
	body.slug-about section.about-access .section-head {
		padding: 2rem;
	}
}
@media (min-width: 1000px) {
	body.slug-about section.about-access .section-head {
		display: grid;
		grid-template-columns: 1fr 3fr;
		gap: 3rem;
		padding: 3rem 4rem 9rem;
	}
}
body.slug-about section.about-access .section-head > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
@media (min-width: 1000px) {
	body.slug-about section.about-access .section-head > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.slug-about section.about-access .ark-block-heading {
		grid-column: 1/2;
		text-align: left;
	}
}
@media (min-width: 1000px) {
	body.slug-about section.about-access .section-body {
		max-width: calc(100% - 8rem);
		margin-top: -7rem;
		margin-left: auto;
		margin-right: auto;
	}
}
body.slug-about .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.5rem 1rem;
}
@media (min-width: 1000px) {
	body.slug-about .address-container {
		grid-column: 2/3;
		align-self: center;
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
body.slug-about .address-container > :not(:first-child) {
	margin-top: 0;
}
body.slug-about .address-text {
	font-weight: 500;
	line-height: 1.5;
	text-indent: -1.5em;
	padding-left: 1.5em;
}
@media (min-width: 600px) {
	body.slug-about .address-text {
		font-size: 1.125rem;
	}
}
@media (min-width: 1000px) {
	body.slug-about .address-text {
		font-size: 1.25rem;
	}
}
body.slug-about .address-text .arkb-inline-icon {
	font-size: 1.125em;
	margin-right: 0.25rem;
}
body.slug-about .gmap-link {
	font-size: 0.875rem;
	margin-left: auto;
}
body.slug-about .gmap-link a {
	text-decoration: none;
	color: inherit;
	background-color: #fff;
	border: 1px solid #898989;
	border-radius: 6px;
	padding: 0.25em 0.75em 0.375em 0.75em;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
body.slug-about .gmap-link a:hover {
	color: #fff;
	background-color: #121212;
}
body.slug-about .gmap-link .arkb-inline-icon {
	margin-left: 0.25rem;
}
body.slug-about .gmap {
	aspect-ratio: 16/9;
	background-color: #fff;
	border: 1px solid #898989;
	padding: 1rem;
}
@media (min-width: 1000px) {
	body.slug-about .gmap {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .gmap {
		aspect-ratio: 4/3;
		padding: 0.5rem;
	}
}
body.slug-about .access-container {
	background-color: #fff;
	border: 1px solid #898989;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 1rem;
}
@media (min-width: 1000px) {
	body.slug-about .access-container {
		display: grid;
		grid-template-columns: -webkit-max-content 1fr;
		grid-template-columns: max-content 1fr;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
body.slug-about .access-container > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
@media (min-width: 1000px) {
	body.slug-about .access-container > :not(:first-child) {
		margin-top: 0;
	}
}
body.slug-about .access-title {
	font-size: 1.25rem;
	font-weight: 500;
}
@media not all and (min-width: 1000px) {
	body.slug-about .access-title {
		border-bottom: 1px solid #ccc;
		padding-bottom: 0.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .access-title {
		font-size: 1.125rem;
	}
}
body.slug-about .access-title .arkb-inline-icon {
	font-size: 1.125em;
	margin-right: 0.25rem;
}
body.slug-about .access-list {
	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 1.5em;
}
@media (min-width: 1000px) {
	body.slug-about .access-list {
		border-left: 1px solid #ccc;
		padding-left: 1em !important;
		margin-left: 1em;
	}
}
body.slug-about .access-list li::before {
	top: 1px;
}
body.slug-about .access-list li.line-midosuji::before {
	background-color: #e60012;
}
body.slug-about .access-list li.line-sakaisuji::before {
	background-color: #8b4513;
}
body.slug-about .access-list li.line-keihan::before {
	background-color: #0b2e6b;
}

/* 代表挨拶・理念 */
body.slug-message section.message .ark-block-section__bodyInner {
	padding-bottom: 1rem;
}
body.slug-message section.message .section-head {
	background-color: #f3f3f3;
	padding: 1.5rem;
}
@media (min-width: 600px) {
	body.slug-message section.message .section-head {
		padding: 2rem;
	}
}
@media (min-width: 1000px) {
	body.slug-message section.message .section-head {
		display: grid;
		grid-template-columns: 1fr 3fr;
		gap: 3rem;
		padding: 3rem 4rem 9rem;
	}
}
body.slug-message section.message .section-head > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
@media (min-width: 1000px) {
	body.slug-message section.message .section-head > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.slug-message section.message .ark-block-heading {
		grid-column: 1/2;
		text-align: left;
	}
}
@media (min-width: 1000px) {
	body.slug-message section.message .section-body {
		max-width: calc(100% - 8rem);
		margin-top: -7rem;
		margin-left: auto;
		margin-right: auto;
	}
}
body.slug-message .message-lead {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
}
@media (min-width: 1000px) {
	body.slug-message .message-lead {
		grid-column: 2/3;
		align-self: center;
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-message .message-lead {
		font-size: 1.25rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-message .message-lead {
		font-size: 1rem;
	}
}
body.slug-message .message-container {
	background-color: #fff;
	border: 1px solid #898989;
	padding: 3rem;
}
@media (min-width: 1000px) {
	body.slug-message .message-container {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-message .message-container {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-message .message-container {
		border: none;
		padding: 0;
	}
}
body.slug-message .message-container > :not(:first-child) {
	--ark-mt--inner: 1.5em;
}
@media (min-width: 1000px) {
	body.slug-message .message-image {
		float: right;
		width: calc(50% - 1.5rem);
		margin-left: 3rem;
		margin-bottom: 1.5rem;
	}
	body.slug-message .message-image + p {
		margin-top: 0;
	}
}
body.slug-message .message-sign {
	line-height: 1.5;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
}
body.slug-message .message-sign .arkb-fz-l {
	font-weight: 500;
}
body.slug-message section.philosophy .section-head {
	background-color: #f3f3f3;
	padding: 1.5rem;
}
@media (min-width: 600px) {
	body.slug-message section.philosophy .section-head {
		padding: 2rem;
	}
}
@media (min-width: 1000px) {
	body.slug-message section.philosophy .section-head {
		display: grid;
		grid-template-columns: 1fr 3fr;
		gap: 3rem;
		padding: 3rem 4rem 9rem;
	}
}
body.slug-message section.philosophy .section-head > :not(:first-child) {
	--ark-mt--inner: 1rem;
}
@media (min-width: 1000px) {
	body.slug-message section.philosophy .section-head > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.slug-message section.philosophy .ark-block-heading {
		grid-column: 1/2;
		text-align: left;
	}
}
@media (min-width: 1000px) {
	body.slug-message section.philosophy .section-body {
		max-width: calc(100% - 8rem);
		margin-top: -7rem;
		margin-left: auto;
		margin-right: auto;
	}
}
body.slug-message .philosophy-container {
	background-color: #fff;
	border: 1px solid #898989;
	padding: 3rem;
}
@media (min-width: 1000px) {
	body.slug-message .philosophy-container {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-message .philosophy-container {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-message .philosophy-container {
		border: none;
		padding: 0;
	}
}
body.slug-message .philosophy-container > :not(:first-child) {
	--ark-mt--inner: 1.5em;
}
body.slug-message .philosophy-title {
	font-family: var(--montserrat);
	font-size: 2em;
	text-align: center;
}
@media not all and (min-width: 1000px) {
	body.slug-message .philosophy-title {
		font-size: 1.75em;
	}
}
@media not all and (min-width: 600px) {
	body.slug-message .philosophy-title {
		font-size: 1.375em;
	}
}
body.slug-message .philosophy-title img {
	vertical-align: middle;
}
@media not all and (min-width: 600px) {
	body.slug-message .philosophy-title img {
		width: 60px !important;
	}
}
body.slug-message .philosophy-text {
	font-size: 1.5rem;
	text-align: center;
	margin-top: 1rem;
}
@media not all and (min-width: 600px) {
	body.slug-message .philosophy-text {
		font-size: 1.125rem;
	}
}
body.slug-message .philosophy-dl {
	--ark-color--border: #ccc;
}
@media (min-width: 1000px) {
	body.slug-message .philosophy-dl {
		font-size: 1.125rem;
	}
}
body.slug-message .philosophy-dl .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;
}
@media not all and (min-width: 1000px) {
	body.slug-message .philosophy-dl .ark-block-dl__div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
body.slug-message .philosophy-dl .ark-block-dl__dt {
	font-family: var(--montserrat);
	font-weight: 400;
}
@media (min-width: 1000px) {
	body.slug-message .philosophy-dl .ark-block-dl__dt {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 17em;
		        flex: 0 0 17em;
		border-right: 1px solid #ccc;
		padding-right: 1em;
	}
}
body.slug-message .philosophy-dl .ark-block-dl__dt mark {
	font-weight: 700;
	width: 1em;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
body.slug-message .philosophy-dl .ark-block-dl__dt strong {
	font-weight: 600;
}
@media (min-width: 1000px) {
	body.slug-message .philosophy-dl .ark-block-dl__dd {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
	}
}
@media not all and (min-width: 600px) {
	body.slug-message .philosophy-dl .ark-block-dl__dd {
		font-size: 0.875rem;
	}
}

/* 採用情報 */
body.slug-recruit .recruit-columns {
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 3rem;
	--arkb-gap--y: 3rem;
}
@media not all and (min-width: 1000px) {
	body.slug-recruit .recruit-columns > .ark-block-columns__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}
body.slug-recruit .recruit-columns .content-col {
	--arkb-clmn-w--pc: calc(100% - 320px);
}
body.slug-recruit .recruit-columns .content-col > :not(:first-child) {
	--ark-mt--inner: 3rem;
}
body.slug-recruit .recruit-columns .toc-col {
	--arkb-clmn-w--pc: 320px;
}
body.slug-recruit .recruit-toc {
	background-color: #f3f3f3;
}
@media (min-width: 1000px) {
	body.slug-recruit .recruit-toc {
		position: sticky;
		top: calc(var(--ark-offset--y) + 1.5rem);
		padding: 1rem;
	}
}
body.slug-recruit .recruit-toc > :not(:first-child) {
	--ark-mt--inner: 0.5rem;
}
@media not all and (min-width: 1000px) {
	body.slug-recruit .recruit-toc > :not(:first-child) {
		margin-top: 0;
	}
}
body.slug-recruit .toc-title {
	font-family: var(--montserrat);
	font-size: 1.25rem;
	font-weight: 700;
	border-top: 4px double #898989;
	padding: 0.5rem 1rem;
}
@media (min-width: 1000px) {
	body.slug-recruit .toc-title {
		margin: -1rem -1rem 0;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-recruit .toc-title {
		border-left: 1px solid #ccc;
		border-right: 1px solid #ccc;
	}
}
body.slug-recruit .toc-title .arkb-inline-icon {
	margin-right: 0.25rem;
}
body.slug-recruit .toc-list {
	list-style: none;
	border-top: 1px solid #ccc;
	padding-left: 0;
}
@media not all and (min-width: 1000px) {
	body.slug-recruit .toc-list {
		border-left: 1px solid #ccc;
		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-recruit .toc-list li {
	margin: 0;
}
@media (min-width: 1000px) {
	body.slug-recruit .toc-list li {
		border-bottom: 1px solid #ccc;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-recruit .toc-list li {
		width: 50%;
		background-color: #f3f3f3;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
}
body.slug-recruit .toc-list li a {
	color: #333;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0.5rem 0.75rem;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
body.slug-recruit .toc-list li a:hover {
	color: #f4b545;
	background-color: var(--ark-color--gray--hover);
}
body.slug-recruit .toc-list li a .arkb-inline-icon {
	margin-left: auto;
}
body.slug-recruit .recruit-container > :not(:first-child) {
	--ark-mt--inner: 1.5em;
}
@media (min-width: 1000px) {
	body.slug-recruit .recruit-heading {
		text-align: left;
	}
}
body.slug-recruit .recruit-title {
	background-color: #f3f3f3;
	border-left: 4px solid #121212;
	padding: 0.375em 0.5em;
}
@media (min-width: 600px) {
	body.slug-recruit .message-image {
		float: right;
		width: calc(50% - 1rem);
		margin-left: 2rem;
		margin-bottom: 1rem;
	}
}
body.slug-recruit .ideal-items {
	border-top: 1px solid #ccc;
}
body.slug-recruit .ideal-items > :not(:first-child) {
	margin-top: 0;
}
body.slug-recruit .ideal-item {
	border-bottom: 1px solid #ccc;
	padding: 1.5rem 0;
}
body.slug-recruit .ideal-item > :not(:first-child) {
	--ark-mt--inner: 1em;
}
body.slug-recruit .ideal-title {
	font-weight: 600;
}
body.slug-recruit .ideal-title mark {
	font-family: var(--montserrat);
	font-size: 2em;
	font-weight: 700;
	line-height: 1;
	vertical-align: middle;
	margin-right: 0.75rem;
}
body.slug-recruit .requirements-table th {
	width: 25%;
}
body.slug-recruit .wpcf7 .form-row {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
body.slug-recruit .wpcf7 .form-row:not(:first-child) {
	margin-top: 1rem;
}
body.slug-recruit .wpcf7 .form-label .label-title {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	padding: 0;
}
body.slug-recruit .wpcf7 .form-body {
	-ms-flex-item-align: auto;
	    align-self: auto;
	margin-top: 0.5rem;
	margin-left: 0;
}

/* お問い合わせ */
@media (min-width: 1000px) {
	body.slug-contact section.contact-content .ark-block-section__bodyInner > :not(:first-child) {
		--ark-mt--inner: 3rem;
	}
}
@media (min-width: 1000px) {
	body.slug-contact .contact-lead {
		font-size: 1.125rem;
		text-align: center;
	}
}
body.slug-contact .wpcf7 {
	max-width: 900px;
	margin: 0 auto;
}

/* コンタクトサンクス */
body.slug-thanks .l-content {
	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 (min-width: 600px) {
	body.slug-thanks .l-content {
		background-color: #f3f3f3;
	}
}
body.slug-thanks .thanks-container {
	max-width: 900px;
	padding: 4rem;
	margin: 0 auto;
}
@media (min-width: 600px) {
	body.slug-thanks .thanks-container {
		background-color: #fff;
		border: 1px solid #121212;
	}
}
@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 {
	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;
	}
}
body.slug-thanks .l-footer {
	border-top: 1px solid #ccc;
}

/* 個人情報保護方針 */
body.slug-privacy-policy .ark-block-section__bodyInner > :not(:first-child) {
	--ark-mt--inner: 4rem;
}
@media not all and (min-width: 1000px) {
	body.slug-privacy-policy .ark-block-section__bodyInner > :not(:first-child) {
		--ark-mt--inner: 3rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-privacy-policy .ark-block-section__bodyInner > :not(:first-child) {
		--ark-mt--inner: 2rem;
	}
}
@media (min-width: 600px) {
	body.slug-privacy-policy .privacy-policy-container {
		border: 1px solid #898989;
		padding: 3rem;
	}
}
body.slug-privacy-policy .privacy-policy-container > :not(:first-child) {
	--ark-mt--inner: 1em;
}
@media not all and (min-width: 600px) {
	body.slug-privacy-policy .privacy-policy-container + .privacy-policy-container {
		border-top: 1px solid #898989;
		padding-top: 2rem;
	}
}
body.slug-privacy-policy h2.privacy-policy-heading {
	text-align: center;
}
@media not all and (min-width: 600px) {
	body.slug-privacy-policy h2.privacy-policy-heading {
		font-size: 1.25em;
	}
}
body.slug-privacy-policy h2.privacy-policy-heading + * {
	--ark-mt--inner: 2em !important;
}
@media not all and (min-width: 600px) {
	body.slug-privacy-policy h2.privacy-policy-heading + * {
		--ark-mt--inner: 1.5em !important;
	}
}
body.slug-privacy-policy h2.privacy-policy-title {
	font-size: 1.5em;
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-privacy-policy h2.privacy-policy-title {
		font-size: 1.25em;
	}
}
body.slug-privacy-policy h3.privacy-policy-title {
	font-size: 1.125em;
	text-indent: -1.6em;
	padding-left: 1.6em;
}
@media not all and (min-width: 600px) {
	body.slug-privacy-policy h3.privacy-policy-title {
		font-size: 1.1em;
	}
}
body.slug-privacy-policy h4.privacy-policy-title {
	font-size: 1.125em;
}
@media not all and (min-width: 600px) {
	body.slug-privacy-policy h4.privacy-policy-title {
		font-size: 1.1em;
	}
}
body.slug-privacy-policy .cookie-container {
	background-color: #f3f3f3;
	padding: 1.5rem;
	margin-top: 1.5rem;
}
body.slug-privacy-policy .cookie-container > :not(:first-child) {
	--ark-mt--inner: 1em;
}
body.slug-privacy-policy h4.cookie-title {
	font-size: 1.125em;
}
body.slug-privacy-policy .privacy-policy-list ul {
	list-style: disc;
}
body.slug-privacy-policy .privacy-policy-list-sub {
	list-style: none !important;
	padding-left: 0;
}
body.slug-privacy-policy .privacy-policy-list-sub ul {
	margin-left: 1em;
}

/* 投稿ページ | 共通 */
.p-entry.type-post .article__body > .c-postContent {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
@media not all and (min-width: 600px) {
	.p-entry.type-post .article__body > .c-postContent {
		margin-top: 2rem;
		margin-bottom: 2rem;
	}
}

/* 投稿ページ | ヘッダー */
@media not all and (min-width: 600px) {
	.p-entry__head h1.c-pageTitle__main {
		font-size: 1.375em;
	}
}
.p-entry__head .c-postMetas {
	font-size: 0.9rem;
	gap: 0.5rem;
}
.p-entry__head .c-postMetas__icon {
	display: none;
}
.p-entry__head .c-postTerms {
	font-size: 0.75rem;
	gap: 0.5rem;
}
.p-entry__head .c-postTerms__item {
	gap: 0.5rem;
	margin-right: 0;
}
.p-entry__head .c-postTerms__item.-category .c-postTerms__link {
	color: #fff;
	background-color: #121212;
	border-radius: 4px;
	padding: 3px 6px;
	margin-right: 0;
}
.p-entry__head .c-postTerms__item.-tag .c-postTerms__link {
	color: #121212;
	background-color: #fff;
	border: 1px solid #121212;
	border-radius: 4px;
	padding: 3px 6px;
	margin-right: 0;
}
.p-entry__head .c-postTerms__link {
	text-decoration: none;
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.p-entry__head .c-postTerms__link:hover {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.p-entry__head .c-postTerms__link:not(:last-child):after {
	content: none;
}
.p-entry__head .c-postAuthor {
	margin-left: auto;
}

/* 投稿ページ | フッター */
.p-entry__foot .c-postMetas {
	font-size: 0.9rem;
}
.p-entry__foot .c-postMetas:has(.c-postTerms) {
	margin: 2rem 0;
}
.p-entry__foot .c-postMetas__icon {
	display: none;
}
.p-entry__foot .c-postTerms {
	font-size: 0.75rem;
	gap: 0.5rem;
}
.p-entry__foot .c-postTerms__item {
	gap: 0.5rem;
	margin-right: 0;
}
.p-entry__foot .c-postTerms__item.-tag .c-postTerms__link {
	color: #121212;
	background-color: #fff;
	border: 1px solid #121212;
	border-radius: 4px;
	line-height: inherit;
	padding: 3px 6px;
	margin-right: 0;
}
.p-entry__foot .c-postTerms__item.-tag .c-postTerms__link::before {
	content: "#";
	margin-right: 0.25em;
	opacity: 0.75;
}
.p-entry__foot .c-postTerms__link {
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.p-entry__foot .c-postTerms__link:hover {
	opacity: unset;
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}

/* 投稿ページ | 前後ボタン */
.c-pnNav {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 1rem;
	margin: 0;
}
.c-pnNav .c-pnNav__item {
	font-size: 1rem;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 auto;
	        flex: 0 1 auto;
	width: unset;
}
@media not all and (min-width: 600px) {
	.c-pnNav .c-pnNav__item {
		font-size: 0.875rem;
	}
}
.c-pnNav .c-pnNav__item .c-pnNav__link {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 0.5rem;
	padding: 0.75em 2.5em;
}
@media not all and (min-width: 600px) {
	.c-pnNav .c-pnNav__item .c-pnNav__link {
		padding: 0.75em 1em;
	}
}
.c-pnNav .c-pnNav__item .c-pnNav__link:hover {
	opacity: unset;
}
.c-pnNav .c-pnNav__item .c-pnNav__link.blank {
	color: #ccc;
}
.c-pnNav .c-pnNav__item.-prev .c-pnNav__link {
	padding-left: 1.5em;
	padding-right: 0.5em;
}
@media not all and (min-width: 600px) {
	.c-pnNav .c-pnNav__item.-list {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
	}
}
.c-pnNav .c-pnNav__item.-list .c-pnNav__link {
	background-color: #fff;
	border: 1px solid #121212;
	border-radius: 8px;
	padding: 0.5em 2em;
}
@media not all and (min-width: 600px) {
	.c-pnNav .c-pnNav__item.-list .c-pnNav__link {
		padding: 0.5em 1.5em;
	}
}
.c-pnNav .c-pnNav__item.-list .c-pnNav__link:hover {
	color: #fff;
	background-color: #121212;
}
.c-pnNav .c-pnNav__item.-next .c-pnNav__link {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	padding-left: 0.5em;
	padding-right: 1.5em;
}
.c-pnNav .c-pnNav__item.-prev .c-pnNav__link:not(.blank):hover .c-pnNav__title, .c-pnNav .c-pnNav__item.-next .c-pnNav__link:not(.blank):hover .c-pnNav__title {
	border-bottom: 1px solid currentColor;
}
.c-pnNav .c-pnNav__item.-prev .c-pnNav__title, .c-pnNav .c-pnNav__item.-next .c-pnNav__title {
	border-bottom: 1px solid transparent;
}
.c-pnNav .c-pnNav__item .c-pnNav__title {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	text-align: center;
	-webkit-transition: unset;
	transition: unset;
	-webkit-transform: translateY(-1px);
	        transform: translateY(-1px);
}

/* サイドバー */
[data-sidebar=on] {
	--ark-width--sidebar: 272px;
}

.l-sidebar {
	font-size: 1rem;
}
.l-sidebar .sidebar-area + .sidebar-area {
	margin-top: 2rem;
}
.l-sidebar .sidebar-container {
	background-color: #f3f3f3;
	padding: 1rem;
}
.l-sidebar .sidebar-container > :not(:first-child) {
	--ark-mt--inner: 0.5rem;
}
.l-sidebar h2.sidebar-title {
	font-size: 1.25rem;
	border-top: 4px double #898989;
	padding: 0.5rem 1rem;
	margin: -1rem -1rem 0 -1rem;
}
.l-sidebar h2.sidebar-title .arkb-inline-icon {
	font-size: 1.125em;
	margin-right: 0.25rem;
}
.l-sidebar .sidebar-categories {
	--ark-menulist_border: 1px solid #ccc;
}
.l-sidebar .sidebar-categories .children.is-opened {
	border-top: 1px solid #ccc;
}
.l-sidebar .sidebar-categories .children > .cat-item:not(:first-child) {
	border-top: 1px solid #ccc;
}

/* フッター */
.l-footer .footer-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
}
.l-footer .footer-columns .ark-block-columns__inner {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (min-width: 1000px) {
	.l-footer .footer-logo {
		text-align: left;
	}
}
.l-footer .footer-logo img {
	width: auto;
	height: var(--ark-logo_size--pc);
}
@media not all and (min-width: 600px) {
	.l-footer .footer-logo img {
		height: var(--ark-logo_size--sp);
	}
}
.l-footer .footer-name {
	font-size: 1.375rem;
	font-weight: 500;
	margin-top: 1.5rem;
}
@media not all and (min-width: 1000px) {
	.l-footer .footer-name {
		text-align: center;
	}
}
@media not all and (min-width: 600px) {
	.l-footer .footer-name {
		font-size: 1.125rem;
	}
}
.l-footer .footer-address {
	margin-top: 0.25rem;
}
@media not all and (min-width: 1000px) {
	.l-footer .footer-address {
		text-align: center;
	}
}
.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;
	padding: 0;
}
@media not all and (min-width: 1000px) {
	.l-footer .footer-nav {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav {
		font-size: 0.875rem;
	}
}
.l-footer .footer-nav > li {
	margin: 0;
}
@media (min-width: 1000px) {
	.l-footer .footer-nav > li {
		-ms-flex-preferred-size: 33.33%;
		    flex-basis: 33.33%;
	}
}
.l-footer .footer-nav > li a {
	display: block;
	white-space: nowrap;
	padding: 0.375rem 0.5rem;
}
.l-footer .footer-nav > li a:not(:hover) {
	text-decoration: none;
}
.l-footer .l-footer__foot {
	color: #fff;
	background-color: #121212;
}
.l-footer .c-copyright {
	font-size: 0.875rem;
	font-weight: 700;
}