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

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

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

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

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

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

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

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

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

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

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

/* 角丸 */
:root {
	--border-radius: 20px;
}
@media not all and (min-width: 600px) {
	:root {
		--border-radius: 15px;
	}
}

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

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

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

/* アイコンバウンス */
@-webkit-keyframes IconBounce {
	0% {
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
	}
	25% {
		-webkit-transform: translateY(-12px) scale(1.06, 0.96);
		        transform: translateY(-12px) scale(1.06, 0.96);
	}
	55% {
		-webkit-transform: translateY(0) scale(0.96, 1.04);
		        transform: translateY(0) scale(0.96, 1.04);
	}
	100% {
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
	}
}
@keyframes IconBounce {
	0% {
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
	}
	25% {
		-webkit-transform: translateY(-12px) scale(1.06, 0.96);
		        transform: translateY(-12px) scale(1.06, 0.96);
	}
	55% {
		-webkit-transform: translateY(0) scale(0.96, 1.04);
		        transform: translateY(0) scale(0.96, 1.04);
	}
	100% {
		-webkit-transform: translateY(0) scale(1);
		        transform: translateY(0) scale(1);
	}
}
/* セクション */
.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 {
	position: relative;
}
.ark-block-heading h2.ark-block-heading__main {
	color: #135072;
	font-size: 2.25em;
	position: relative;
	z-index: 1;
}
@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.375em;
	}
}
:root:lang(en-US) .ark-block-heading h2.ark-block-heading__main {
	font-size: 3em;
}
@media not all and (min-width: 1000px) {
	:root:lang(en-US) .ark-block-heading h2.ark-block-heading__main {
		font-size: 2.5em;
	}
}
@media not all and (min-width: 600px) {
	:root:lang(en-US) .ark-block-heading h2.ark-block-heading__main {
		font-size: 1.75em;
	}
}
.ark-block-heading .ark-block-heading__sub {
	color: #2085be;
	font-size: 4.5em;
	font-weight: 800;
	letter-spacing: 0.025em;
	width: 100%;
	white-space: nowrap;
	opacity: 0.1;
	position: absolute;
	top: -3.5rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	z-index: 0;
}
@media not all and (min-width: 600px) {
	.ark-block-heading .ark-block-heading__sub {
		font-size: 3em;
		top: -2.25rem;
	}
}
.ark-block-heading .ark-block-heading__line {
	margin-top: 0.5em !important;
}
@media not all and (min-width: 600px) {
	.ark-block-heading .ark-block-heading__line {
		margin-top: 0.25em !important;
	}
}
.ark-block-heading .ark-block-heading__line:before {
	background-color: unset;
	background-image: url(../img/heading-line.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 46px;
	height: 6px;
}
@media not all and (min-width: 600px) {
	.ark-block-heading .ark-block-heading__line:before {
		width: 31px;
		height: 4px;
	}
}

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

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

/* ボタン */
.ark-block-button .ark-block-button__link {
	border-radius: 9999px;
	padding: 1em 4em 1em 3.5em;
}
@media not all and (min-width: 600px) {
	.ark-block-button .ark-block-button__link {
		padding: 0.75em 3em 0.75em 2.5em;
	}
}
.ark-block-button .ark-block-button__link::before {
	content: none;
}
.ark-block-button .ark-block-button__text {
	font-weight: 700;
}
.ark-block-button.is-btn-outline .ark-block-button__link {
	background-color: #fff;
}
.ark-block-button.is-btn-outline .ark-block-button__icon.-right {
	fill: #2085be;
	background-color: #e9f3f9;
	border-radius: 9999px;
	padding: 4px;
	-webkit-transform: scale(1.5);
	        transform: scale(1.5);
	position: absolute;
	right: 24px;
}
@media not all and (min-width: 600px) {
	.ark-block-button.is-btn-outline .ark-block-button__icon.-right {
		right: 20px;
	}
}
.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: #135072;
	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: #2085be;
	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 {
	border-top: 1px solid #ddd;
}
.p-postList.-type-list .p-postList__item {
	margin-bottom: 0;
	position: relative;
}
.p-postList.-type-list .p-postList__link {
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	padding: 1.5rem;
	-webkit-transition-property: border-color, -webkit-filter, -webkit-box-shadow, -webkit-transform;
	transition-property: border-color, -webkit-filter, -webkit-box-shadow, -webkit-transform;
	transition-property: filter, border-color, box-shadow, transform;
	transition-property: filter, border-color, box-shadow, transform, -webkit-filter, -webkit-box-shadow, -webkit-transform;
	-webkit-transition-duration: 0.25s;
	        transition-duration: 0.25s;
}
@media not all and (min-width: 600px) {
	.p-postList.-type-list .p-postList__link {
		padding: 1rem;
	}
}
@media (hover: hover) and (pointer: fine) {
	.p-postList.-type-list .p-postList__link:hover {
		border-color: transparent;
		-webkit-box-shadow: var(--box-shadow);
		        box-shadow: var(--box-shadow);
		-webkit-transform: translateY(-1px);
		        transform: translateY(-1px);
		z-index: 2;
	}
}
.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;
	}
}
.p-postList.-type-list .c-postThumb__figure {
	border-radius: 6px;
	overflow: hidden;
}
@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__meta {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.p-postList.-type-card .p-postList__excerpt {
	font-size: 0.875rem;
}

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

/* ページネーション */
@media not all and (min-width: 1000px) {
	.pagination {
		margin-top: 2rem;
	}
}
.pagination .page-numbers,
.pagination .post-numbers {
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@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: #2085be;
	background-color: #f1f7fb;
	border-radius: 9999px;
}
.pagination .page-numbers:not(.dots):hover,
.pagination .post-numbers:not(.dots):hover {
	color: #fff;
	background-color: #2085be;
}
.pagination .page-numbers.current,
.pagination .post-numbers.current {
	color: #fff;
	background-color: #2085be;
}

/* 検索フォーム */
.c-searchForm {
	border-radius: 9999px;
	overflow: hidden;
}
.c-searchForm .c-searchForm__s {
	border: 1px solid #bbb;
	border-radius: 9999px;
	padding: 0.5em 4em 0.5em 1.5em;
}
.c-searchForm .c-searchForm__submit {
	color: #2085be;
	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='%230f8dcc' d='M6.984 9.984h10.031l-5.016 5.016z'/></svg>");
	background-size: 2rem 2rem;
	border: 1px solid #bbb;
	border-radius: 4px;
}

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

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

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

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

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

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

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

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

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

/* Flexible Table Block */
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table {
	border-top: none;
	border-right: none;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
	border-width: 1px;
	border-style: solid;
	border-color: #ccc !important;
	padding: 1em !important;
}
@media not all and (min-width: 600px) {
	.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
	.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
		padding: 0.75em !important;
	}
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
	color: #135072;
	background-color: #f1f7fb !important;
	font-weight: 700;
}

/* ヘッダー */
.l-header {
	border-top: 4px solid #2085be;
	-webkit-box-shadow: 0 6px 10px -5px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 6px 10px -5px rgba(0, 0, 0, 0.1);
}
.l-header[data-btns=rr-rl][data-logo=left] .l-header__body {
	grid-template-columns: auto 1fr auto -webkit-min-content;
	grid-template-columns: auto 1fr auto min-content;
	grid-template-rows: -webkit-min-content 1fr;
	grid-template-rows: min-content 1fr;
	grid-template-areas: "left search right-top menu" "left right-bottom right-bottom menu";
}
@media (min-width: 1000px) and (max-width: 1200px) {
	:root:lang(ja) .l-header[data-btns=rr-rl][data-logo=left] .l-header__body {
		grid-template-areas: "left-top search right-top menu" "bottom bottom bottom menu";
	}
}
@media not all and (min-width: 1000px) {
	.l-header[data-btns=rr-rl][data-logo=left] .l-header__body {
		grid-template-rows: auto;
		grid-template-areas: "left right search menu";
		gap: 0.25rem;
	}
}
.l-header .l-header__body {
	max-width: unset;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__body {
		padding-top: 32px;
		padding-left: 12px;
	}
	[lang=en-US] .l-header .l-header__body {
		padding-top: 0.5em;
	}
}
.l-header .l-header__center {
	grid-area: left;
}
@media (min-width: 1000px) and (max-width: 1200px) {
	:root:lang(ja) .l-header .l-header__center {
		grid-area: left-top;
	}
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__center {
		grid-area: left;
	}
}
@media not all and (min-width: 600px) {
	.l-header .l-header__center {
		padding: 4px 0;
	}
}
.l-header .l-header__left {
	grid-area: right-top;
	margin-left: auto;
}
.l-header .l-header__right {
	grid-area: right-bottom;
	gap: 12px;
}
@media (min-width: 1000px) and (max-width: 1200px) {
	:root:lang(ja) .l-header .l-header__right {
		grid-area: bottom;
	}
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__right {
		display: block;
		grid-area: right;
		align-self: center;
	}
}
@media (min-width: 600px) {
	.l-header .l-header__searchBtn {
		justify-self: end;
	}
}
@media not all and (min-width: 1000px) {
	.l-header .l-header__logo {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
.l-header .c-headLogo {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.l-header .c-headLogo__text {
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 0.75rem;
}
@media not all and (min-width: 1000px) {
	.l-header .c-headLogo__text {
		background-color: #f1f7fb;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 4px 2vw 4px 12px;
		margin-bottom: 0;
		pointer-events: none;
	}
}
@media not all and (min-width: 600px) {
	.l-header .c-headLogo__text {
		font-size: 12px;
	}
}
.l-header .c-headLogo__img {
	height: var(--ark-logo_size--pc);
}
@media (min-width: 1000px) and (max-width: 1200px) {
	:root:lang(ja) .l-header .c-headLogo__img {
		--ark-logo_size--pc: 56px;
	}
}
@media not all and (min-width: 1000px) {
	.l-header .c-headLogo__img {
		height: var(--ark-logo_size--sp);
	}
}
.l-header .header-cta-columns {
	padding: 8px 0;
	margin-left: 1.5rem;
}
.l-header .header-cta-columns .ark-block-columns__inner {
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.l-header .header-cta-columns .tel-col {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.l-header .header-cta-columns .contact-col {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
.l-header .tel-button .ark-block-button__link {
	background: transparent;
	padding: 0 0 0 1rem;
}
.l-header .tel-button .ark-block-button__icon {
	fill: #2085be;
	-webkit-transform: scale(1.5) translateX(-0.25em);
	        transform: scale(1.5) translateX(-0.25em);
}
.l-header .tel-button .ark-block-button__text {
	color: #333;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.1;
}
.l-header .tel-times {
	font-size: 0.875rem;
	line-height: 1;
	margin-top: 0.375rem;
}
.l-header .mail-button .ark-block-button__link {
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
	padding: 0.875em 3em;
}
@media not all and (min-width: 1000px) {
	.l-header .mail-button .ark-block-button__link {
		padding: 0.875em 4em;
	}
}
.l-header ul.bogo-language-switcher {
	background-color: #fff;
	border-radius: 6px;
	-webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.25);
	        box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.25);
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	padding: 4px;
	overflow: hidden;
}
@media not all and (min-width: 1000px) {
	.l-header ul.bogo-language-switcher {
		padding: 3px;
	}
}
.l-header ul.bogo-language-switcher li {
	color: #888;
	height: 26px;
	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: relative;
	margin: 0;
}
@media not all and (min-width: 1000px) {
	.l-header ul.bogo-language-switcher li {
		height: 22px;
	}
}
.l-header ul.bogo-language-switcher li.current {
	color: #fff;
	background-color: #2085be;
	border-radius: 4px;
}
.l-header ul.bogo-language-switcher .bogo-language-name {
	font-weight: 500;
}
@media not all and (min-width: 1000px) {
	.l-header ul.bogo-language-switcher .bogo-language-name {
		font-size: 0.875rem;
	}
}
.l-header ul.bogo-language-switcher .bogo-language-name:not(:has(a)) {
	color: #ccc;
	padding: 2px 10px;
}
@media not all and (min-width: 1000px) {
	.l-header ul.bogo-language-switcher .bogo-language-name:not(:has(a)) {
		padding: 2px 8px;
	}
}
.l-header ul.bogo-language-switcher .bogo-language-name a {
	color: inherit;
	text-decoration: none;
	padding: 2px 10px;
}
@media not all and (min-width: 1000px) {
	.l-header ul.bogo-language-switcher .bogo-language-name a {
		padding: 2px 8px;
	}
}

/* Gナビ */
@media not all and (min-width: 1000px) {
	.c-gnavWrap {
		display: none;
	}
}

.c-gnav {
	font-size: 1rem;
	gap: 0.25rem;
}
.c-gnav > .menu-item {
	border-radius: 8px;
}
.c-gnav > .menu-item:focus, .c-gnav > .menu-item:hover {
	background-color: #f1f7fb;
}
.c-gnav > .menu-item > .c-gnav__a {
	padding: 16px 10px;
}
.c-gnav > .menu-item.recruit .c-gnav__a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.c-gnav > .menu-item.recruit .c-gnav__a::after {
	content: "";
	background: currentColor;
	display: inline-block;
	-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXNBcnJvd1VwUmlnaHRGcm9tU3F1YXJlIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTMyMCAwYy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMyaDgyLjdMMjAxLjQgMjY1LjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBMNDQ4IDEwOS4zVjE5MmMwIDE3LjcgMTQuMyAzMiAzMiAzMnMzMi0xNC4zIDMyLTMyVjMyYzAtMTcuNy0xNC4zLTMyLTMyLTMySDMyMHpNODAgMzJDMzUuOCAzMiAwIDY3LjggMCAxMTJWNDMyYzAgNDQuMiAzNS44IDgwIDgwIDgwSDQwMGM0NC4yIDAgODAtMzUuOCA4MC04MFYzMjBjMC0xNy43LTE0LjMtMzItMzItMzJzLTMyIDE0LjMtMzIgMzJWNDMyYzAgOC44LTcuMiAxNi0xNiAxNkg4MGMtOC44IDAtMTYtNy4yLTE2LTE2VjExMmMwLTguOCA3LjItMTYgMTYtMTZIMTkyYzE3LjcgMCAzMi0xNC4zIDMyLTMycy0xNC4zLTMyLTMyLTMySDgweiI+PC9wYXRoPjwvc3ZnPg==);
	        mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXNBcnJvd1VwUmlnaHRGcm9tU3F1YXJlIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTMyMCAwYy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMyaDgyLjdMMjAxLjQgMjY1LjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBMNDQ4IDEwOS4zVjE5MmMwIDE3LjcgMTQuMyAzMiAzMiAzMnMzMi0xNC4zIDMyLTMyVjMyYzAtMTcuNy0xNC4zLTMyLTMyLTMySDMyMHpNODAgMzJDMzUuOCAzMiAwIDY3LjggMCAxMTJWNDMyYzAgNDQuMiAzNS44IDgwIDgwIDgwSDQwMGM0NC4yIDAgODAtMzUuOCA4MC04MFYzMjBjMC0xNy43LTE0LjMtMzItMzItMzJzLTMyIDE0LjMtMzIgMzJWNDMyYzAgOC44LTcuMiAxNi0xNiAxNkg4MGMtOC44IDAtMTYtNy4yLTE2LTE2VjExMmMwLTguOCA3LjItMTYgMTYtMTZIMTkyYzE3LjcgMCAzMi0xNC4zIDMyLTMycy0xNC4zLTMyLTMyLTMySDgweiI+PC9wYXRoPjwvc3ZnPg==);
	-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: 0.75em;
	height: 0.75em;
	margin-left: 0.25em;
}
.c-gnav .sub-menu {
	color: #333;
	background-color: #fff;
}
.c-gnav .sub-menu.c-gnav__depth1 {
	--ark-nav-padding--Y: 0.6rem;
	--ark-nav-padding--R: 1rem;
	--ark-nav-padding--L: 0.5rem;
	border-radius: 8px;
	-webkit-box-shadow: unset;
	        box-shadow: unset;
	-webkit-filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.05)) drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.1));
	        filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.05)) drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.1));
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 180px;
	left: 0;
	-webkit-transform: unset;
	        transform: unset;
	padding: 0.5rem;
}
.c-gnav .sub-menu.c-gnav__depth1::before {
	content: none;
}
.c-gnav .sub-menu > .menu-item {
	--icon-display: none;
	--icon-mask: none;
	--icon-size: 1.5em;
	border-radius: 8px;
	width: 100%;
	white-space: nowrap;
	position: relative;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
.c-gnav .sub-menu > .menu-item:not(:last-child) {
	border-bottom: none;
}
.c-gnav .sub-menu > .menu-item:focus, .c-gnav .sub-menu > .menu-item:hover {
	color: #2085be;
	background-color: #f1f7fb;
}
.c-gnav .sub-menu > .menu-item.patent {
	--icon-display: block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M480-96.92q-30.31 0-52.27-21-21.96-21-23.88-51.31h152.3q-1.92 30.31-23.88 51.31-21.96 21-52.27 21Zm-150-127.7v-60h300v60H330ZM336.15-340q-62.84-39.08-99.49-102.12Q200-505.15 200-580q0-116.92 81.54-198.46T480-860q116.92 0 198.46 81.54T760-580q0 74.85-36.66 137.88-36.65 63.04-99.49 102.12h-287.7ZM354-400h252q45-32 69.5-79T700-580q0-92-64-156t-156-64q-92 0-156 64t-64 156q0 54 24.5 101t69.5 79Zm126 0Z"/></svg>');
}
.c-gnav .sub-menu > .menu-item.trademark {
	--icon-display: block;
	--icon-mask: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJQaFRyYWRlbWFya1JlZ2lzdGVyZWQiIHZpZXdCb3g9IjAgMCAyNTYgMjU2Ij48cmVjdCB3aWR0aD0iMjU2IiBoZWlnaHQ9IjI1NiIgZmlsbD0ibm9uZSI+PC9yZWN0PjxjaXJjbGUgY3g9IjEyOCIgY3k9IjEyOCIgcj0iOTYiIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMTYiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0xMDQsMTM2aDMyYTI0LDI0LDAsMCwwLDAtNDhIMTA0djgwIiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjE2Ij48L3BhdGg+PGxpbmUgeDE9IjEzNy42IiB5MT0iMTM1LjkiIHgyPSIxNjAiIHkyPSIxNjgiIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMTYiPjwvbGluZT48L3N2Zz4=);
}
.c-gnav .sub-menu > .menu-item.design {
	--icon-display: block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M287.69-535.39 480-850.77l192.31 315.38H287.69ZM700-95.39q-68.85 0-116.73-47.88-47.88-47.88-47.88-116.73t47.88-116.73q47.88-47.88 116.73-47.88t116.73 47.88q47.88 47.88 47.88 116.73t-47.88 116.73Q768.85-95.39 700-95.39Zm-564.61-20v-289.22h289.22v289.22H135.39Zm564.6-39.99q43.93 0 74.28-30.34t30.35-74.27q0-43.93-30.34-74.28t-74.27-30.35q-43.93 0-74.28 30.34t-30.35 74.27q0 43.93 30.34 74.28t74.27 30.35Zm-504.61-20h169.24v-169.24H195.38v169.24Zm198.16-420h172.92L480-734.46l-86.46 139.08Zm86.46 0ZM364.62-344.62ZM700-260Z"/></svg>');
}
.c-gnav .sub-menu > .menu-item.foreign-filing {
	--icon-display: block;
	--icon-mask: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJQaEdsb2JlSGVtaXNwaGVyZUVhc3QiIHZpZXdCb3g9IjAgMCAyNTYgMjU2Ij48cmVjdCB3aWR0aD0iMjU2IiBoZWlnaHQ9IjI1NiIgZmlsbD0ibm9uZSI+PC9yZWN0PjxjaXJjbGUgY3g9IjEyOCIgY3k9IjEyOCIgcj0iOTYiIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMTYiPjwvY2lyY2xlPjxwYXRoIGQ9Ik00OS42LDE4My40bDExLjctNy4xYTgsOCwwLDAsMCwzLjgtNi44bC4yLTM2LjFhNy43LDcuNywwLDAsMSwxLjMtNC4yTDg2LjQsOTguMWE4LjEsOC4xLDAsMCwxLDExLjUtMi4ybDE5LjYsMTQuMmE4LjYsOC42LDAsMCwwLDUuOCwxLjVsMzEuNS00LjNhNy44LDcuOCwwLDAsMCw0LjktMi43TDE4MS45LDc5YTguMSw4LjEsMCwwLDAsMS45LTUuNmwtMS4xLTI0LjMiIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMTYiPjwvcGF0aD48cGF0aCBkPSJNMTg3LjEsMjAzLjdsLTEwLjgtMTAuOGE4LjIsOC4yLDAsMCwwLTMuNi0yLjFsLTIxLjUtNS42YTgsOCwwLDAsMS01LjgtOC45bDIuMy0xNi4yYTguMiw4LjIsMCwwLDEsNC45LTYuMkwxODMsMTQxLjJhOCw4LDAsMCwxLDguNSwxLjVsMjQuOSwyMi44IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjE2Ij48L3BhdGg+PC9zdmc+);
}
.c-gnav .sub-menu > .menu-item.legal {
	--icon-display: block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M100-140v-60h350v-444.69q-27.15-7.08-47.5-26.85-20.35-19.77-27.81-48.46H242.31L360-435.77q-1.15 45-39.08 76.54Q283-327.69 230-327.69t-90.92-31.54q-37.92-31.54-39.08-76.54L217.69-720H140v-60h234.69q9.31-34.23 38.19-57.11Q441.77-860 480-860q38.23 0 67.12 22.89Q576-814.23 585.31-780H820v60h-77.69L860-435.77q-1.16 45-39.08 76.54Q783-327.69 730-327.69t-90.92-31.54q-37.93-31.54-39.08-76.54L717.69-720H585.31q-7.46 28.69-27.81 48.46-20.35 19.77-47.5 26.85V-200h350v60H100Zm552.31-297.69h155.38L730-625.15l-77.69 187.46Zm-500 0h155.38L230-625.15l-77.69 187.46ZM480-700q20.85 0 35.42-14.58Q530-729.15 530-750t-14.58-35.42Q500.85-800 480-800t-35.42 14.58Q430-770.85 430-750t14.58 35.42Q459.15-700 480-700Z"/></svg>');
}
.c-gnav .sub-menu > .menu-item.philosophy {
	--icon-display: block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M220-130v-650h323.84l16 80H780v360H536.16l-16-80H280v290h-60Zm280-430Zm86 160h134v-240H510l-16-80H280v240h290l16 80Z"/></svg>');
}
.c-gnav .sub-menu > .menu-item.message {
	--icon-display: block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M250-410h300v-60H250v60Zm0-120h460v-60H250v60Zm0-120h460v-60H250v60ZM100-118.46v-669.23Q100-818 121-839q21-21 51.31-21h615.38Q818-860 839-839q21 21 21 51.31v455.38Q860-302 839-281q-21 21-51.31 21H241.54L100-118.46ZM216-320h571.69q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46v-455.38q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H172.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v523.08L216-320Zm-56 0v-480 480Z"/></svg>');
}
.c-gnav .sub-menu > .menu-item.overview {
	--icon-display: block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M150-140v-60h80v-620h360v40h140v580h80v60H670v-580h-80v580H150Zm140-620v560-560Zm160 315.38q14.69 0 25.04-10.34 10.35-10.35 10.35-25.04t-10.35-25.04q-10.35-10.34-25.04-10.34t-25.04 10.34q-10.34 10.35-10.34 25.04t10.34 25.04q10.35 10.34 25.04 10.34ZM290-200h240v-560H290v560Z"/></svg>');
}
.c-gnav .sub-menu > .menu-item.culture {
	--icon-display: block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M160-160v-280 280Zm640 0v-280 280Zm-40-460q17 0 28.5-11.5T800-660q0-17-11.5-28.5T760-700q-17 0-28.5 11.5T720-660q0 17 11.5 28.5T760-620Zm-.03 60q-42.51 0-71.24-28.72Q660-617.45 660-659.91q0-41.63 28.73-70.86Q717.45-760 759.91-760q41.63 0 70.86 29.18Q860-701.65 860-659.97q0 42.51-29.18 71.24Q801.65-560 759.97-560ZM480-660q25 0 42.5-17t17.5-43q0-25-17.5-42.5T480-780q-26 0-43 17.5T420-720q0 26 17 43t43 17Zm.02 60q-50.56 0-85.29-34.68Q360-669.36 360-719.87q0-49.67 34.68-84.9Q429.36-840 479.88-840q49.66 0 84.89 35.14Q600-769.73 600-720.02q0 50.56-35.14 85.29Q529.73-600 480.02-600ZM309.23-425q0 33.08 32.77 74.62 32.77 41.53 130.69 130.46l7.31 6.54 8.08-7.7q94-85 128.34-127.47 34.35-42.47 34.35-76.45 0-27.5-18.11-46.64-18.1-19.13-44.66-19.13-16.35 0-30.94 7.15-14.6 7.16-24.52 19.7L488-410.77h-16.61l-44.93-53.15q-9.92-12.54-24.34-19.7-14.43-7.15-30.12-7.15-27.76 0-45.27 19.13-17.5 19.14-17.5 46.64Zm-60 0q0-49.15 34.66-87.46 34.65-38.31 88.11-38.31 30.23 0 57.19 14 26.96 14 45.81 37.23l5 5.77 5-6.15q19.23-22.85 45.69-36.85 26.46-14 57.31-14 53.08 0 87.92 38.66 34.85 38.67 34.85 87.11 0 49.92-37.54 100.08-37.54 50.15-150 153L480-132.31l-42.46-38.46Q322.31-276.15 285.77-325.42q-36.54-49.27-36.54-99.58ZM200-620q17 0 28.5-11.5T240-660q0-17-11.5-28.5T200-700q-17 0-28.5 11.5T160-660q0 17 11.5 28.5T200-620Zm283 520v-60h317v-267.69q0-5-3.65-8.66-3.66-3.65-8.66-3.65H683.54v-60h104.15q29.83 0 51.07 21.24Q860-457.52 860-427.69V-100H483Zm-323-60h323v60H100v-327.59q0-30.02 20.79-51.22Q141.58-500 172.31-500h104.15v60H172.31q-5.39 0-8.85 3.65-3.46 3.66-3.46 8.66V-160Zm39.97-400q-42.51 0-71.24-28.72Q100-617.45 100-659.91q0-41.63 28.73-70.86Q157.45-760 199.91-760q41.63 0 70.86 29.18Q300-701.65 300-659.97q0 42.51-29.18 71.24Q241.65-560 199.97-560ZM480-720Zm-280 60Zm560 0Z"/></svg>');
}
.c-gnav .sub-menu > .menu-item.publication {
	--icon-display: block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M302.31-100q-50.69 0-86.5-35.81T180-222.31V-730q0-54.15 37.92-92.08Q255.85-860 310-860h470v575.38q-25.77 0-44.04 18.27t-18.27 44.04q0 25.77 18.27 44.04T780-160v60H302.31ZM240-326.23q13.62-9.31 29.19-13.85 15.58-4.53 33.12-4.53h25.38V-800H310q-28.85 0-49.42 20.58Q240-758.85 240-730v403.77Zm147.69-18.38H720V-800H387.69v455.39ZM240-326.23v-466.08 466.08ZM302.31-160h373.77q-8.7-13.62-13.54-28.88-4.85-15.27-4.85-33.43 0-17.15 4.54-32.92 4.54-15.77 13.85-29.39H302.31q-26.77 0-44.54 18.27T240-222.31q0 26.77 17.77 44.54T302.31-160Z"/></svg>');
}
.c-gnav .sub-menu .c-gnav__a {
	font-size: 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.25rem;
}
.c-gnav .sub-menu .c-gnav__a::before {
	content: "";
	background-color: #2085be;
	display: var(--icon-display);
	width: var(--icon-size);
	height: var(--icon-size);
	-webkit-mask-image: var(--icon-mask);
	        mask-image: var(--icon-mask);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	position: inherit;
	top: unset;
	left: unset;
	z-index: inherit;
}
.c-gnav .sub-menu .c-gnav__a:hover::before {
	background-color: #2085be;
}

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

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

.p-drawer {
	--ark-menulist_border: 1px solid #90c2df;
	--ark-nav-padding--Y: 0.875rem;
	font-size: 1rem;
}
.p-drawer .c-drawerNav {
	border-top: none;
}
.p-drawer .c-drawerNav__li {
	--icon-display: none;
	--icon-mask: none;
	--icon-size: 1.5em;
}
.p-drawer .c-drawerNav__li .c-drawerNav__a {
	font-size: 1rem;
	font-weight: 700;
}
.p-drawer .c-drawerNav__li .c-drawerNav__a:hover {
	background-color: inherit;
}
.p-drawer .c-drawerNav__li > .c-drawerNav__a::before {
	content: "";
	background-color: currentColor;
	display: var(--icon-display);
	width: var(--icon-size);
	height: var(--icon-size);
	-webkit-mask-image: var(--icon-mask);
	        mask-image: var(--icon-mask);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	vertical-align: middle;
	-webkit-transform: translateY(-0.1em);
	        transform: translateY(-0.1em);
	margin-right: 6px;
}
.p-drawer .c-drawerNav__li.service {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="m317.77-337.31-82-337.69L480-900l243.84 225-81.99 337.69H317.77Zm47.23-60h229.62l62.53-257.23-147.15-136v129.85q13.23 8.08 21.23 21.34 8 13.27 8 29.73 0 24.39-17.42 41.81-17.43 17.42-41.81 17.42-24.77 0-42.19-17.42-17.42-17.42-17.42-41.81 0-16.46 8-29.92T450-660.69v-129.85l-147.15 136L365-397.31ZM180-140l20.46-58.85q7.23-21.54 25.16-34.42 17.92-12.88 40.46-12.88h427.84q22.54 0 40.46 12.88 17.93 12.88 25.16 34.42L780-140H180Z"/></svg>');
}
.p-drawer .c-drawerNav__li.feature {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M843.92-225.85 738.15-332l41.77-41.77L886.08-268l-42.16 42.15ZM708-698.54l-41.77-41.77L772-846.08l42.15 41.77L708-698.54Zm-456 .39L146.23-804.31 188-846.08l106.15 105.77L252-698.15Zm-136.31 472.3L73.92-268l105.77-105.77L221.85-332 115.69-225.85Zm220.62-39.99L480-352.23l144.08 87.77-37.62-163.62 126.39-109.07-166.39-14.93L480-706.54l-66.08 153.46-166.38 14.54 126.38 110.46-37.61 162.24Zm-91 125.84 61.92-266L100-585.38l273.39-23.47L480-860l107 251.15 273.38 23.47L653.15-406l61.93 266L480-281.31 245.31-140Zm235.07-346Z"/></svg>');
}
.p-drawer .c-drawerNav__li.members {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M71.93-187.69v-88.93q0-30.92 15.96-55.19 15.96-24.27 42.63-37.76 57.02-27.89 114.67-43.01 57.66-15.11 126.73-15.11 69.08 0 126.73 15.11 57.66 15.12 114.68 43.01 26.67 13.49 42.63 37.76 15.96 24.27 15.96 55.19v88.93H71.93Zm679.99 0v-93.85q0-39.38-19.28-75.07-19.29-35.68-54.72-61.23 40.23 6 76.39 18.57 36.15 12.58 69 29.73 31 16.54 47.88 38.99 16.88 22.44 16.88 49.01v93.85H751.92Zm-380-304.62q-57.75 0-98.87-41.12-41.12-41.13-41.12-98.88 0-57.75 41.12-98.87 41.12-41.13 98.87-41.13 57.75 0 98.88 41.13 41.12 41.12 41.12 98.87 0 57.75-41.12 98.88-41.13 41.12-98.88 41.12Zm345.38-140q0 57.75-41.12 98.88-41.12 41.12-98.87 41.12-6.77 0-17.23-1.54-10.47-1.54-17.23-3.38 23.66-28.45 36.37-63.12 12.7-34.67 12.7-72 0-37.34-12.96-71.73-12.96-34.38-36.11-63.3 8.61-3.08 17.23-4 8.61-.93 17.23-.93 57.75 0 98.87 41.13 41.12 41.12 41.12 98.87ZM131.92-247.69h480v-28.93q0-12.53-6.27-22.3-6.26-9.77-19.88-17.08-49.38-25.46-101.69-38.58-52.31-13.11-112.16-13.11-59.84 0-112.15 13.11-52.31 13.12-101.69 38.58-13.62 7.31-19.89 17.08-6.27 9.77-6.27 22.3v28.93Zm240-304.62q33 0 56.5-23.5t23.5-56.5q0-33-23.5-56.5t-56.5-23.5q-33 0-56.5 23.5t-23.5 56.5q0 33 23.5 56.5t56.5 23.5Zm0 304.62Zm0-384.62Z"/></svg>');
}
.p-drawer .c-drawerNav__li.case {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M720.69-296.16 840-575.08v-21.07q0-5.39-3.46-8.85t-8.85-3.46H595.69l20.93-147.08-72.31 71.92q-5.7-5.69-20.89-21.19-15.19-15.5-20.88-21.19l133.61-134 23.93 23.92q12.46 12.47 17.38 28.23 4.92 15.77 2.31 32.85l-15.16 106.54h163.08q29.92 0 51.12 21.19Q900-626.08 900-596.15v18.77q0 7.23-1.5 14.46t-4.12 14.07l-90.69 211.77q-8.08 18.54-25 29.73-16.92 11.19-37.08 11.19h-20.92ZM235.38-140H60v-372.31h175.38v60H120V-200h115.38v60Zm268.93 0H175.39v-338.46l224.99-225.38 23.93 23.92q12.46 12.46 17.57 28.42 5.12 15.96 2.5 33.04l-15.15 106.15h164.62q29.92 0 51.11 21.2 21.19 21.19 21.19 51.11v19.77q0 7.23-1.5 13.96t-4.11 13.96L571-183.39q-8.85 20.08-26.92 31.73Q526-140 504.31-140Zm8.08-60 93.76-217.92V-440q0-5.39-3.46-8.85t-8.84-3.46H359.92l20.93-147.08-145.47 145.85V-200h277.01Zm-277.01 0v-253.54V-200Z"/></svg>');
}
.p-drawer .c-drawerNav__li.faq {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M550-369.23q14.69 0 25.65-10.96 10.96-10.96 10.96-25.66 0-14.69-10.96-25.65-10.96-10.96-25.65-10.96-14.69 0-25.65 10.96-10.97 10.96-10.97 25.65 0 14.7 10.97 25.66 10.96 10.96 25.65 10.96Zm-23.85-120.31h47.69q.77-27.08 6.97-40.19 6.19-13.12 29.34-35.5 27.69-26.54 37.69-44.85 10-18.3 10-42.53 0-42.7-30.15-70.43-30.15-27.73-77.69-27.73-37.15 0-65.35 20.5-28.19 20.5-40.96 55.04l43.23 18.15q10.16-24.23 26.04-36.34 15.89-12.12 37.04-12.12 26.31 0 43.23 15.23 16.92 15.23 16.92 40.16 0 15.15-8.57 28.42-8.58 13.27-29.73 32.65-29.16 25.54-37.43 43-8.27 17.47-8.27 56.54ZM322.31-260Q292-260 271-281q-21-21-21-51.31v-455.38Q250-818 271-839q21-21 51.31-21h455.38Q808-860 829-839q21 21 21 51.31v455.38Q850-302 829-281q-21 21-51.31 21H322.31Zm0-60h455.38q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46v-455.38q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H322.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v455.38q0 4.62 3.85 8.46 3.84 3.85 8.46 3.85Zm-140 200Q152-120 131-141q-21-21-21-51.31v-515.38h60v515.38q0 4.62 3.85 8.46 3.84 3.85 8.46 3.85h515.38v60H182.31ZM310-800v480-480Z"/></svg>');
}
.p-drawer .c-drawerNav__li.about {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M94.62-136.92v-700h379.99v160h390.77v540H94.62Zm59.99-60h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm0-160h100.01v-100H154.61v100Zm160 480h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm0-160h100.01v-100H314.61v100Zm160 480h330.78v-420H474.61v100h87.7v60h-87.7v100h87.7v60h-87.7v100Zm175.39-260v-60h60v60h-60Zm0 160v-60h60v60h-60Z"/></svg>');
}
.p-drawer .c-drawerNav__li.recruit {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M440-492.31q-57.75 0-98.87-41.12Q300-574.56 300-632.31q0-57.75 41.13-98.87 41.12-41.13 98.87-41.13 57.75 0 98.87 41.13Q580-690.06 580-632.31q0 57.75-41.13 98.88-41.12 41.12-98.87 41.12Zm0-60q33 0 56.5-23.5t23.5-56.5q0-33-23.5-56.5t-56.5-23.5q-33 0-56.5 23.5t-23.5 56.5q0 33 23.5 56.5t56.5 23.5ZM866.31-51.54 749.08-168.77q-20.23 12.77-42.7 20-22.46 7.23-46.3 7.23-66.23 0-112.39-46.24-46.15-46.25-46.15-112.31t46.24-112.22q46.25-46.15 112.31-46.15t112.22 46.22q46.15 46.22 46.15 112.24 0 23.92-7.23 46.38-7.23 22.47-20 42.7L908.46-93.69l-42.15 42.15ZM660-201.54q41.62 0 70.04-28.42 28.42-28.42 28.42-70.04 0-41.62-28.42-70.04-28.42-28.42-70.04-28.42-41.62 0-70.04 28.42-28.42 28.42-28.42 70.04 0 41.62 28.42 70.04 28.42 28.42 70.04 28.42Zm-520 13.85V-276q0-29.77 15.66-54.73 15.65-24.96 42.96-38.81 47.15-23.69 113.65-42.07 66.5-18.39 145.65-15.31-8.92 14.15-15.49 29.14-6.56 15-10.43 31.09-65.77.77-119.69 17.42-53.92 16.65-85.54 33.27-12.69 6.15-19.73 16.87Q200-288.41 200-276v28.31h227.39q3.46 15.84 9.46 31.03 6 15.2 14.15 28.97H140Zm300-444.62Zm-12.61 384.62Z"/></svg>');
}
.p-drawer .c-drawerNav__li.recruit > .c-drawerNav__a::after {
	content: "";
	background: currentColor;
	display: inline-block;
	width: 0.75em;
	height: 0.75em;
	-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXNBcnJvd1VwUmlnaHRGcm9tU3F1YXJlIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTMyMCAwYy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMyaDgyLjdMMjAxLjQgMjY1LjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBMNDQ4IDEwOS4zVjE5MmMwIDE3LjcgMTQuMyAzMiAzMiAzMnMzMi0xNC4zIDMyLTMyVjMyYzAtMTcuNy0xNC4zLTMyLTMyLTMySDMyMHpNODAgMzJDMzUuOCAzMiAwIDY3LjggMCAxMTJWNDMyYzAgNDQuMiAzNS44IDgwIDgwIDgwSDQwMGM0NC4yIDAgODAtMzUuOCA4MC04MFYzMjBjMC0xNy43LTE0LjMtMzItMzItMzJzLTMyIDE0LjMtMzIgMzJWNDMyYzAgOC44LTcuMiAxNi0xNiAxNkg4MGMtOC44IDAtMTYtNy4yLTE2LTE2VjExMmMwLTguOCA3LjItMTYgMTYtMTZIMTkyYzE3LjcgMCAzMi0xNC4zIDMyLTMycy0xNC4zLTMyLTMyLTMySDgweiI+PC9wYXRoPjwvc3ZnPg==);
	        mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXNBcnJvd1VwUmlnaHRGcm9tU3F1YXJlIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZD0iTTMyMCAwYy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMyaDgyLjdMMjAxLjQgMjY1LjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBMNDQ4IDEwOS4zVjE5MmMwIDE3LjcgMTQuMyAzMiAzMiAzMnMzMi0xNC4zIDMyLTMyVjMyYzAtMTcuNy0xNC4zLTMyLTMyLTMySDMyMHpNODAgMzJDMzUuOCAzMiAwIDY3LjggMCAxMTJWNDMyYzAgNDQuMiAzNS44IDgwIDgwIDgwSDQwMGM0NC4yIDAgODAtMzUuOCA4MC04MFYzMjBjMC0xNy43LTE0LjMtMzItMzItMzJzLTMyIDE0LjMtMzIgMzJWNDMyYzAgOC44LTcuMiAxNi0xNiAxNkg4MGMtOC44IDAtMTYtNy4yLTE2LTE2VjExMmMwLTguOCA3LjItMTYgMTYtMTZIMTkyYzE3LjcgMCAzMi0xNC4zIDMyLTMycy0xNC4zLTMyLTMyLTMySDgweiI+PC9wYXRoPjwvc3ZnPg==);
	-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;
	margin-left: 6px;
}
.p-drawer .sub-menu.is-opened {
	border-top: 1px solid #90c2df;
}
.p-drawer .sub-menu > .menu-item {
	--icon-display: none;
	--icon-mask: none;
	--icon-size: 1.5em;
}
.p-drawer .sub-menu > .menu-item > .c-drawerNav__a::before {
	content: "";
	background-color: currentColor;
	display: var(--icon-display);
	width: var(--icon-size);
	height: var(--icon-size);
	-webkit-mask-image: var(--icon-mask);
	        mask-image: var(--icon-mask);
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	vertical-align: middle;
	-webkit-transform: translateY(-0.1em);
	        transform: translateY(-0.1em);
	margin-right: 6px;
}
.p-drawer .sub-menu > .menu-item.patent {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M480-96.92q-30.31 0-52.27-21-21.96-21-23.88-51.31h152.3q-1.92 30.31-23.88 51.31-21.96 21-52.27 21Zm-150-127.7v-60h300v60H330ZM336.15-340q-62.84-39.08-99.49-102.12Q200-505.15 200-580q0-116.92 81.54-198.46T480-860q116.92 0 198.46 81.54T760-580q0 74.85-36.66 137.88-36.65 63.04-99.49 102.12h-287.7ZM354-400h252q45-32 69.5-79T700-580q0-92-64-156t-156-64q-92 0-156 64t-64 156q0 54 24.5 101t69.5 79Zm126 0Z"/></svg>');
}
.p-drawer .sub-menu > .menu-item.trademark {
	--icon-display: inline-block;
	--icon-mask: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJQaFRyYWRlbWFya1JlZ2lzdGVyZWQiIHZpZXdCb3g9IjAgMCAyNTYgMjU2Ij48cmVjdCB3aWR0aD0iMjU2IiBoZWlnaHQ9IjI1NiIgZmlsbD0ibm9uZSI+PC9yZWN0PjxjaXJjbGUgY3g9IjEyOCIgY3k9IjEyOCIgcj0iOTYiIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMTYiPjwvY2lyY2xlPjxwYXRoIGQ9Ik0xMDQsMTM2aDMyYTI0LDI0LDAsMCwwLDAtNDhIMTA0djgwIiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjE2Ij48L3BhdGg+PGxpbmUgeDE9IjEzNy42IiB5MT0iMTM1LjkiIHgyPSIxNjAiIHkyPSIxNjgiIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMTYiPjwvbGluZT48L3N2Zz4=);
}
.p-drawer .sub-menu > .menu-item.design {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M287.69-535.39 480-850.77l192.31 315.38H287.69ZM700-95.39q-68.85 0-116.73-47.88-47.88-47.88-47.88-116.73t47.88-116.73q47.88-47.88 116.73-47.88t116.73 47.88q47.88 47.88 47.88 116.73t-47.88 116.73Q768.85-95.39 700-95.39Zm-564.61-20v-289.22h289.22v289.22H135.39Zm564.6-39.99q43.93 0 74.28-30.34t30.35-74.27q0-43.93-30.34-74.28t-74.27-30.35q-43.93 0-74.28 30.34t-30.35 74.27q0 43.93 30.34 74.28t74.27 30.35Zm-504.61-20h169.24v-169.24H195.38v169.24Zm198.16-420h172.92L480-734.46l-86.46 139.08Zm86.46 0ZM364.62-344.62ZM700-260Z"/></svg>');
}
.p-drawer .sub-menu > .menu-item.foreign-filing {
	--icon-display: inline-block;
	--icon-mask: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJQaEdsb2JlSGVtaXNwaGVyZUVhc3QiIHZpZXdCb3g9IjAgMCAyNTYgMjU2Ij48cmVjdCB3aWR0aD0iMjU2IiBoZWlnaHQ9IjI1NiIgZmlsbD0ibm9uZSI+PC9yZWN0PjxjaXJjbGUgY3g9IjEyOCIgY3k9IjEyOCIgcj0iOTYiIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMTYiPjwvY2lyY2xlPjxwYXRoIGQ9Ik00OS42LDE4My40bDExLjctNy4xYTgsOCwwLDAsMCwzLjgtNi44bC4yLTM2LjFhNy43LDcuNywwLDAsMSwxLjMtNC4yTDg2LjQsOTguMWE4LjEsOC4xLDAsMCwxLDExLjUtMi4ybDE5LjYsMTQuMmE4LjYsOC42LDAsMCwwLDUuOCwxLjVsMzEuNS00LjNhNy44LDcuOCwwLDAsMCw0LjktMi43TDE4MS45LDc5YTguMSw4LjEsMCwwLDAsMS45LTUuNmwtMS4xLTI0LjMiIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMTYiPjwvcGF0aD48cGF0aCBkPSJNMTg3LjEsMjAzLjdsLTEwLjgtMTAuOGE4LjIsOC4yLDAsMCwwLTMuNi0yLjFsLTIxLjUtNS42YTgsOCwwLDAsMS01LjgtOC45bDIuMy0xNi4yYTguMiw4LjIsMCwwLDEsNC45LTYuMkwxODMsMTQxLjJhOCw4LDAsMCwxLDguNSwxLjVsMjQuOSwyMi44IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBzdHJva2Utd2lkdGg9IjE2Ij48L3BhdGg+PC9zdmc+);
}
.p-drawer .sub-menu > .menu-item.legal {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M100-140v-60h350v-444.69q-27.15-7.08-47.5-26.85-20.35-19.77-27.81-48.46H242.31L360-435.77q-1.15 45-39.08 76.54Q283-327.69 230-327.69t-90.92-31.54q-37.92-31.54-39.08-76.54L217.69-720H140v-60h234.69q9.31-34.23 38.19-57.11Q441.77-860 480-860q38.23 0 67.12 22.89Q576-814.23 585.31-780H820v60h-77.69L860-435.77q-1.16 45-39.08 76.54Q783-327.69 730-327.69t-90.92-31.54q-37.93-31.54-39.08-76.54L717.69-720H585.31q-7.46 28.69-27.81 48.46-20.35 19.77-47.5 26.85V-200h350v60H100Zm552.31-297.69h155.38L730-625.15l-77.69 187.46Zm-500 0h155.38L230-625.15l-77.69 187.46ZM480-700q20.85 0 35.42-14.58Q530-729.15 530-750t-14.58-35.42Q500.85-800 480-800t-35.42 14.58Q430-770.85 430-750t14.58 35.42Q459.15-700 480-700Z"/></svg>');
}
.p-drawer .sub-menu > .menu-item.philosophy {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M220-130v-650h323.84l16 80H780v360H536.16l-16-80H280v290h-60Zm280-430Zm86 160h134v-240H510l-16-80H280v240h290l16 80Z"/></svg>');
}
.p-drawer .sub-menu > .menu-item.message {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M250-410h300v-60H250v60Zm0-120h460v-60H250v60Zm0-120h460v-60H250v60ZM100-118.46v-669.23Q100-818 121-839q21-21 51.31-21h615.38Q818-860 839-839q21 21 21 51.31v455.38Q860-302 839-281q-21 21-51.31 21H241.54L100-118.46ZM216-320h571.69q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46v-455.38q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H172.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v523.08L216-320Zm-56 0v-480 480Z"/></svg>');
}
.p-drawer .sub-menu > .menu-item.overview {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M150-140v-60h80v-620h360v40h140v580h80v60H670v-580h-80v580H150Zm140-620v560-560Zm160 315.38q14.69 0 25.04-10.34 10.35-10.35 10.35-25.04t-10.35-25.04q-10.35-10.34-25.04-10.34t-25.04 10.34q-10.34 10.35-10.34 25.04t10.34 25.04q10.35 10.34 25.04 10.34ZM290-200h240v-560H290v560Z"/></svg>');
}
.p-drawer .sub-menu > .menu-item.culture {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M160-160v-280 280Zm640 0v-280 280Zm-40-460q17 0 28.5-11.5T800-660q0-17-11.5-28.5T760-700q-17 0-28.5 11.5T720-660q0 17 11.5 28.5T760-620Zm-.03 60q-42.51 0-71.24-28.72Q660-617.45 660-659.91q0-41.63 28.73-70.86Q717.45-760 759.91-760q41.63 0 70.86 29.18Q860-701.65 860-659.97q0 42.51-29.18 71.24Q801.65-560 759.97-560ZM480-660q25 0 42.5-17t17.5-43q0-25-17.5-42.5T480-780q-26 0-43 17.5T420-720q0 26 17 43t43 17Zm.02 60q-50.56 0-85.29-34.68Q360-669.36 360-719.87q0-49.67 34.68-84.9Q429.36-840 479.88-840q49.66 0 84.89 35.14Q600-769.73 600-720.02q0 50.56-35.14 85.29Q529.73-600 480.02-600ZM309.23-425q0 33.08 32.77 74.62 32.77 41.53 130.69 130.46l7.31 6.54 8.08-7.7q94-85 128.34-127.47 34.35-42.47 34.35-76.45 0-27.5-18.11-46.64-18.1-19.13-44.66-19.13-16.35 0-30.94 7.15-14.6 7.16-24.52 19.7L488-410.77h-16.61l-44.93-53.15q-9.92-12.54-24.34-19.7-14.43-7.15-30.12-7.15-27.76 0-45.27 19.13-17.5 19.14-17.5 46.64Zm-60 0q0-49.15 34.66-87.46 34.65-38.31 88.11-38.31 30.23 0 57.19 14 26.96 14 45.81 37.23l5 5.77 5-6.15q19.23-22.85 45.69-36.85 26.46-14 57.31-14 53.08 0 87.92 38.66 34.85 38.67 34.85 87.11 0 49.92-37.54 100.08-37.54 50.15-150 153L480-132.31l-42.46-38.46Q322.31-276.15 285.77-325.42q-36.54-49.27-36.54-99.58ZM200-620q17 0 28.5-11.5T240-660q0-17-11.5-28.5T200-700q-17 0-28.5 11.5T160-660q0 17 11.5 28.5T200-620Zm283 520v-60h317v-267.69q0-5-3.65-8.66-3.66-3.65-8.66-3.65H683.54v-60h104.15q29.83 0 51.07 21.24Q860-457.52 860-427.69V-100H483Zm-323-60h323v60H100v-327.59q0-30.02 20.79-51.22Q141.58-500 172.31-500h104.15v60H172.31q-5.39 0-8.85 3.65-3.46 3.66-3.46 8.66V-160Zm39.97-400q-42.51 0-71.24-28.72Q100-617.45 100-659.91q0-41.63 28.73-70.86Q157.45-760 199.91-760q41.63 0 70.86 29.18Q300-701.65 300-659.97q0 42.51-29.18 71.24Q241.65-560 199.97-560ZM480-720Zm-280 60Zm560 0Z"/></svg>');
}
.p-drawer .sub-menu > .menu-item.publication {
	--icon-display: inline-block;
	--icon-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M302.31-100q-50.69 0-86.5-35.81T180-222.31V-730q0-54.15 37.92-92.08Q255.85-860 310-860h470v575.38q-25.77 0-44.04 18.27t-18.27 44.04q0 25.77 18.27 44.04T780-160v60H302.31ZM240-326.23q13.62-9.31 29.19-13.85 15.58-4.53 33.12-4.53h25.38V-800H310q-28.85 0-49.42 20.58Q240-758.85 240-730v403.77Zm147.69-18.38H720V-800H387.69v455.39ZM240-326.23v-466.08 466.08ZM302.31-160h373.77q-8.7-13.62-13.54-28.88-4.85-15.27-4.85-33.43 0-17.15 4.54-32.92 4.54-15.77 13.85-29.39H302.31q-26.77 0-44.54 18.27T240-222.31q0 26.77 17.77 44.54T302.31-160Z"/></svg>');
}
.p-drawer .c-submenuToggleBtn::after {
	-webkit-box-shadow: unset;
	        box-shadow: unset;
}
.p-drawer .c-submenuToggleBtn:hover {
	outline: unset;
}
.p-drawer .drawer-cta {
	margin-top: 1.5rem;
}
.p-drawer .tel-button .ark-block-button__icon {
	fill: #fff;
}
.p-drawer .tel-button .ark-block-button__text {
	color: #fff;
}

/* ホーム | Hero */
section.hero {
	height: 650px;
}
@media not all and (min-width: 600px) {
	section.hero {
		height: 450px;
	}
}
section.hero .ark-block-section__body {
	height: 100%;
}
@media not all and (min-width: 1000px) {
	section.hero .ark-block-section__body {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
section.hero h2.hero-catch {
	color: #135072;
	font-size: 3rem;
	text-shadow: 0 0 4px #fff, 0 0 8px #fff, 0 0 12px #fff, 0 0 20px #fff, 0 0 30px #fff;
}
@media not all and (min-width: 1250px) {
	section.hero h2.hero-catch {
		font-size: 2.5rem;
	}
}
@media not all and (min-width: 600px) {
	section.hero h2.hero-catch {
		font-size: 1.75rem;
	}
}
section.hero h2.hero-catch .arkb-fz-l {
	font-size: 1.3333em !important;
}

/* ホーム | 業務分野 */
section.service {
	margin-top: -153px !important;
}
@media not all and (min-width: 1000px) {
	section.service {
		margin-top: -15vw !important;
	}
}
@media not all and (min-width: 600px) {
	section.service {
		--arkb-padding: 0 !important;
		border-top: 1px solid #ddd;
		border-bottom: 1px solid #ddd;
		margin-top: 0 !important;
	}
}
section.service .service-buttons {
	--arkb-clmn-w--pc: 20%;
	--arkb-clmn-w--tab: 33.33%;
	--arkb-clmn-w--mb: 100%;
}
@media not all and (min-width: 1200px) {
	section.service .service-buttons {
		--arkb-clmn-w--pc: 33.33%;
		--arkb-gap--y: 0rem;
		max-width: 750px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media not all and (min-width: 1000px) {
	section.service .service-buttons {
		max-width: 700px;
	}
}
@media not all and (min-width: 600px) {
	section.service .service-buttons {
		--arkb-gap--x: 0rem;
		--arkb-gap--y: 0rem;
	}
}
section.service .service-buttons .ark-block-columns__inner {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
section.service .service-buttons .service-button {
	aspect-ratio: 1/1;
	background-color: #fff;
	border-radius: 9999px;
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1.5rem 1rem;
}
@media (min-width: 1000px) {
	section.service .service-buttons .service-button:nth-child(1) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.service .service-buttons .service-button:nth-child(2) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
	section.service .service-buttons .service-button:nth-child(3) {
		-webkit-animation-delay: 0.75s;
		        animation-delay: 0.75s;
	}
	section.service .service-buttons .service-button:nth-child(4) {
		-webkit-animation-delay: 1s;
		        animation-delay: 1s;
	}
	section.service .service-buttons .service-button:nth-child(5) {
		-webkit-animation-delay: 1.25s;
		        animation-delay: 1.25s;
	}
}
@media not all and (min-width: 600px) {
	section.service .service-buttons .service-button {
		aspect-ratio: unset;
		border-radius: unset;
		-webkit-box-shadow: unset;
		        box-shadow: unset;
		-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;
		padding: 0.75rem 0.5rem;
		gap: 0.25rem;
	}
	section.service .service-buttons .service-button:not(:last-child)::after {
		content: "";
		background-color: #ddd;
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		bottom: 0;
	}
}
section.service .service-buttons .service-button:hover .button-icon {
	--arkb-icon-color: #fff !important;
	background-color: #2085be;
}
@media (min-width: 1000px) and (max-width: 1200px) {
	section.service .service-buttons lottie-player {
		width: 10vw !important;
		height: 10vw !important;
	}
}
@media not all and (min-width: 1000px) {
	section.service .service-buttons lottie-player {
		width: 12vw !important;
		height: 12vw !important;
	}
}
@media not all and (min-width: 600px) {
	section.service .service-buttons lottie-player {
		width: 48px !important;
		height: 48px !important;
	}
}
section.service .service-title-group {
	margin-top: 0;
}
@media not all and (min-width: 600px) {
	section.service .service-title-group {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 0.5em;
	}
}
section.service h3.service-title {
	font-size: 1.25rem;
	line-height: 150%;
}
:root:lang(en-US) section.service h3.service-title {
	color: #2085be;
}
@media (min-width: 600px) {
	:root:lang(en-US) section.service h3.service-title {
		padding-bottom: 0.5em;
	}
}
@media not all and (min-width: 1000px) {
	section.service h3.service-title {
		font-size: clamp(18px, 2.5vw, 20px);
	}
}
@media not all and (min-width: 600px) {
	section.service h3.service-title {
		font-size: 1.2rem;
		text-align: left;
	}
}
section.service .service-subtitle {
	color: #2085be;
	font-size: 1rem;
	line-height: 1;
	margin-top: 2px;
}
@media not all and (min-width: 600px) {
	section.service .service-subtitle {
		font-size: 0.9rem;
		text-align: left;
		margin-top: 0;
	}
}
section.service .button-icon {
	background-color: #e9f3f9;
	border-radius: 9999px;
	padding: 6px;
	margin-top: 0;
	margin-left: auto;
	-webkit-transition: background-color 0.25s;
	transition: background-color 0.25s;
}
@media (min-width: 600px) {
	section.service .button-icon {
		display: none;
	}
}
section.service .button-icon .ark-block-icon__svg {
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}

/* ホーム | トピックス */
@media not all and (min-width: 600px) {
	section.topics {
		--arkb-padding: 1rem 0 !important;
	}
}
@media not all and (min-width: 600px) {
	section.topics .ark-block-section__color {
		background-color: #f1f7fb !important;
	}
}
section.topics .topics-container {
	border: 8px solid #f1f7fb;
	display: grid;
	grid-template-columns: -webkit-min-content 1fr -webkit-max-content;
	grid-template-columns: min-content 1fr max-content;
	grid-template-rows: auto;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem 3rem;
	padding: 1rem 2rem;
}
@media not all and (min-width: 1000px) {
	section.topics .topics-container {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: -webkit-min-content 1fr;
		grid-template-rows: min-content 1fr;
	}
}
@media not all and (min-width: 600px) {
	section.topics .topics-container {
		background-color: #fff;
		border: none;
		padding: 1rem;
	}
}
section.topics .topics-container > * {
	margin-top: 0;
}
section.topics h2.topics-title {
	grid-column: 1/2;
	grid-row: 1/2;
	color: #135072;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
section.topics .topics-list {
	grid-column: 2/3;
	grid-row: 1/2;
	position: relative;
}
@media not all and (min-width: 1000px) {
	section.topics .topics-list {
		grid-column: 1/3;
		grid-row: 2/3;
	}
}
section.topics .topics-list::before {
	content: "";
	background-color: #ccc;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 50%;
	left: -1.5rem;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 1000px) {
	section.topics .topics-list::before {
		width: 100%;
		height: 1px;
		top: -0.5rem;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
section.topics .topics-list .p-postList {
	border-top: unset;
}
section.topics .topics-list .p-postList__link {
	border-bottom: unset;
	padding: 0.5rem 0;
}
section.topics .topics-list .p-postList__link:hover {
	background-color: unset;
}
section.topics .topics-list .p-postList__body {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 0 0.5em;
}
@media not all and (min-width: 600px) {
	section.topics .topics-list .p-postList__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
section.topics .topics-list .p-postList__meta {
	color: #1d65b1;
	font-size: 1rem;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
section.topics .topics-list .p-postList__title {
	color: #333;
	font-size: 1rem;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media not all and (min-width: 1000px) {
	section.topics .topics-list .p-postList__title {
		-webkit-line-clamp: 2;
	}
}
section.topics .topics-buttons {
	grid-column: 3/4;
	grid-row: 1/2;
}
@media not all and (min-width: 1000px) {
	section.topics .topics-buttons {
		grid-column: 2/3;
		grid-row: 1/2;
		justify-self: end;
		margin-right: 0.5rem;
	}
}
section.topics .topics-buttons .ark-block-button__link {
	background-color: transparent;
	border-radius: unset;
	-webkit-box-shadow: unset;
	        box-shadow: unset;
	gap: 0.5rem;
	padding: 0;
}
section.topics .topics-buttons .ark-block-button__link:hover .ark-block-button__icon.-right {
	fill: #fff;
	background-color: #2085be;
}
section.topics .topics-buttons .ark-block-button__text {
	font-size: 0.875rem;
	line-height: 1;
	border-bottom: 1px solid currentColor;
}
section.topics .topics-buttons .ark-block-button__icon.-right {
	position: relative;
	right: unset;
	-webkit-transition: fill 0.25s, background-color 0.25s;
	transition: fill 0.25s, background-color 0.25s;
}

/* ホーム | About Us */
@media not all and (min-width: 600px) {
	section.about {
		--arkb-padding: 3rem 0 !important;
	}
}
section.about h2.ark-block-heading__main {
	font-size: 2em;
}
@media not all and (min-width: 1000px) {
	section.about h2.ark-block-heading__main {
		font-size: 1.75em;
	}
}
@media not all and (min-width: 600px) {
	section.about h2.ark-block-heading__main {
		font-size: 1.3em;
	}
}
:root:lang(en-US) section.about h2.ark-block-heading__main {
	font-size: 2.5em;
}
@media not all and (min-width: 1000px) {
	:root:lang(en-US) section.about h2.ark-block-heading__main {
		font-size: 2em;
	}
}
@media not all and (min-width: 600px) {
	:root:lang(en-US) section.about h2.ark-block-heading__main {
		font-size: 1.75em;
	}
}
@media (min-width: 1000px) {
	section.about .about-text {
		font-size: 1.125rem;
		line-height: 2;
	}
}
@media (min-width: 600px) {
	section.about .about-text {
		text-align: center;
	}
}
@media (min-width: 1000px) {
	section.about .about-buttons .ark-block-button:nth-child(2) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.about .about-buttons .ark-block-button:nth-child(3) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
@media not all and (min-width: 600px) {
	section.about .about-buttons .ark-block-button {
		width: inherit;
	}
}
section.about .about-buttons .ark-block-button__link {
	width: 100%;
}
section.about .about-slider {
	pointer-events: none;
	margin-top: 3.5rem;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}
@media not all and (min-width: 600px) {
	section.about .about-slider {
		margin-top: 2.5rem;
	}
}
section.about .about-slider .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	        transition-timing-function: linear !important;
}
section.about .about-slider .ark-block-slider__media img {
	border-radius: 10px;
	aspect-ratio: 3/2;
	-o-object-fit: cover;
	   object-fit: cover;
}

/* ホーム | 特徴 */
section.feature .feature-columns {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 3rem;
	--arkb-gap--y: 1.5rem;
}
section.feature .feature-columns .ark-block-columns__inner {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
section.feature .feature-columns .feature-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
@media (min-width: 1000px) {
	section.feature .feature-columns .feature-column:nth-child(2) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.feature .feature-columns .feature-column:nth-child(3) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
section.feature .feature-columns .feature-column:hover .feature-image img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
section.feature .feature-columns .feature-column:hover .more-text {
	color: #2085be;
}
section.feature .feature-columns .feature-column:hover .more-text .arkb-inline-icon {
	color: #fff;
	background-color: #2085be;
}
section.feature .feature-figure {
	position: relative;
}
@media not all and (min-width: 600px) {
	section.feature .feature-figure {
		margin: 0 10vw;
	}
}
section.feature .feature-num {
	color: #2085be;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
@media not all and (min-width: 600px) {
	section.feature .feature-num {
		font-size: 3.5rem;
	}
}
section.feature .feature-image {
	border-radius: 9999px;
	overflow: hidden;
	margin-top: 0;
}
section.feature .feature-image img {
	aspect-ratio: 1/1;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
section.feature .feature-body {
	--ark-mt: 1rem;
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 1.5rem;
	margin-top: -5rem;
	z-index: 1;
}
section.feature h3.feature-title {
	color: #135072;
	text-align: center;
}
section.feature .more-text {
	color: #90c2df;
	font-size: 0.875rem;
	text-align: right !important;
	margin-top: auto;
	-webkit-transform: translate(14px, 14px);
	        transform: translate(14px, 14px);
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}
section.feature .more-text .arkb-inline-icon {
	color: #2085be;
	background-color: #e9f3f9;
	font-size: 0.75rem;
	border-radius: 9999px;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	margin-left: 0.25rem;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
section.feature .more-text .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

/* ホーム | 弁理士等紹介 */
@media (min-width: 1000px) {
	section.member .member-text {
		font-size: 1.125rem;
		line-height: 2;
	}
}
@media (min-width: 600px) {
	section.member .member-text {
		text-align: center;
	}
}
section.member .member-slider {
	--slideW: calc((100vw - (6 * var(--gap))) / 6);
	--gap: 16px;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}
@media (min-width: 1000px) and (max-width: 1300px) {
	section.member .member-slider {
		--slideW: calc((100vw - (4 * var(--gap))) / 4);
	}
}
@media not all and (min-width: 1000px) {
	section.member .member-slider {
		--slideW: calc((100vw - (3 * var(--gap))) / 2);
		--gap: 8px;
	}
}
section.member .member-slider .swiper-slide {
	-webkit-transition: opacity 0.75s, -webkit-filter 0.25s;
	transition: opacity 0.75s, -webkit-filter 0.25s;
	transition: filter 0.25s, opacity 0.75s;
	transition: filter 0.25s, opacity 0.75s, -webkit-filter 0.25s;
}
@media (min-width: 1000px) {
	section.member .member-slider .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide + .swiper-slide {
		opacity: 0.3;
	}
	section.member .member-slider .swiper-slide:has(+ .swiper-slide + .swiper-slide + .swiper-slide-active) {
		opacity: 0.3;
	}
}
@media (min-width: 1000px) and (max-width: 1300px) {
	section.member .member-slider .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
		opacity: 0.3;
	}
	section.member .member-slider .swiper-slide:has(+ .swiper-slide + .swiper-slide-active) {
		opacity: 0.3;
	}
}
@media not all and (min-width: 1000px) {
	section.member .member-slider .swiper-slide.swiper-slide-active + .swiper-slide {
		opacity: 0.3;
	}
	section.member .member-slider .swiper-slide:has(+ .swiper-slide-active) {
		opacity: 0.3;
	}
}
section.member .member-slider .swiper-slide:has(.member-img a):hover {
	-webkit-filter: brightness(1.05);
	        filter: brightness(1.05);
}
section.member .member-slider .swiper-slide:has(.member-img a):hover .member-img img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
section.member .member-slider .swiper-slide:has(.member-img a):hover .more-text {
	color: #2085be;
}
section.member .member-slider .swiper-slide:has(.member-img a):hover .more-text .arkb-inline-icon {
	color: #fff;
	background-color: #2085be;
}
section.member .member-slider .ark-block-slider__bodyInner {
	padding: 0;
}
section.member .member-slider .ark-block-slider__nav {
	background-color: #2085be;
	border-radius: 9999px;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 4px -4px rgba(0, 0, 0, 0.1490196078);
	        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 4px 4px -4px rgba(0, 0, 0, 0.1490196078);
	width: 3rem;
	height: 3rem;
	padding: 14px;
	margin-top: 0;
	-webkit-transition: opacity 0.25s;
	transition: opacity 0.25s;
}
@media not all and (min-width: 600px) {
	section.member .member-slider .ark-block-slider__nav {
		width: 2.5rem;
		height: 2.5rem;
		padding: 10px;
	}
}
section.member .member-slider .ark-block-slider__nav:not(:hover) {
	opacity: 0.5;
}
section.member .member-slider .ark-block-slider__nav svg {
	color: #fff;
}
section.member .member-slider .ark-block-slider__nav.-prev {
	left: 6.25vw !important;
	left: calc(var(--slideW) / 2 + var(--gap) / 2) !important;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
section.member .member-slider .ark-block-slider__nav.-next {
	right: 6.25vw !important;
	right: calc(var(--slideW) / 2 + var(--gap) / 2) !important;
	-webkit-transform: translate(50%, -50%);
	        transform: translate(50%, -50%);
}
section.member .member-img {
	border-radius: 10px;
	overflow: hidden;
}
section.member .member-img a:hover {
	opacity: unset;
	-webkit-filter: unset;
	        filter: unset;
}
section.member .member-img img {
	aspect-ratio: 3/4;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
section.member .member-body {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	width: calc(100% - 20px);
	max-width: 170px;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	right: 10px;
	bottom: 10px;
	padding: 12px;
	pointer-events: none;
}
section.member .member-body > * {
	margin-top: 0;
}
section.member .member-position {
	font-size: 0.875rem;
	text-align: left;
}
@media not all and (min-width: 1150px) {
	section.member .member-position {
		font-size: 0.75rem;
	}
}
section.member .member-name {
	color: #135072;
	font-size: 1.375rem;
	text-align: left;
}
@media not all and (min-width: 1150px) {
	section.member .member-name {
		font-size: 1.25rem;
	}
}
section.member .more-text {
	color: #90c2df;
	font-size: 0.875rem;
	text-align: right !important;
	margin-top: auto;
	-webkit-transform: translate(6px, 6px);
	        transform: translate(6px, 6px);
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}
section.member .more-text .arkb-inline-icon {
	color: #2085be;
	background-color: #e9f3f9;
	font-size: 0.75rem;
	border-radius: 9999px;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	margin-left: 0.25rem;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
section.member .more-text .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

/* ホーム | お客様事例 */
@media (min-width: 1000px) {
	section.case .case-text {
		font-size: 1.125rem;
		line-height: 2;
	}
}
@media (min-width: 600px) {
	section.case .case-text {
		text-align: center;
	}
}
section.case .case-columns {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 100%;
}
section.case .case-columns .case-column {
	background-color: #fff;
	border-top: 3px solid #2085be;
	border-radius: 0 0 10px 10px;
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 1.25rem;
}
@media (min-width: 1000px) {
	section.case .case-columns .case-column:nth-child(2) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.case .case-columns .case-column:nth-child(3) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
	section.case .case-columns .case-column:nth-child(5) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.case .case-columns .case-column:nth-child(6) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
section.case .case-columns .case-column:hover .more-text {
	color: #2085be;
}
section.case .case-columns .case-column:hover .more-text .arkb-inline-icon {
	color: #fff;
	background-color: #2085be;
}
section.case .case-heading {
	display: grid;
	grid-template-columns: 4rem auto;
	grid-template-rows: auto;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.5rem 1rem;
}
section.case .case-heading > * {
	margin-top: 0;
}
section.case .case-icon {
	grid-column: 1/2;
	grid-row: 1/2;
}
section.case .case-title {
	grid-column: 2/3;
	grid-row: 1/2;
	color: #135072;
	font-size: 1.25rem;
}
section.case .case-body {
	background-color: #fff;
	border-top: 1px solid #ccc;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-top: 10px;
}
section.case .more-text {
	color: #90c2df;
	font-size: 0.875rem;
	text-align: right !important;
	margin-top: auto;
	-webkit-transform: translate(10px, 10px);
	        transform: translate(10px, 10px);
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}
section.case .more-text .arkb-inline-icon {
	color: #2085be;
	background-color: #e9f3f9;
	font-size: 0.75rem;
	border-radius: 9999px;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	margin-left: 0.25rem;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
section.case .more-text .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

/* ホーム | ページリンク */
@media not all and (min-width: 1000px) {
	section.page-nav {
		--arkb-padding: 2rem 0 !important;
	}
}
@media not all and (min-width: 600px) {
	section.page-nav {
		--arkb-padding: 1rem 0 !important;
	}
}
section.page-nav .page-nav-container {
	background-color: #f1f7fb;
	padding: 4rem;
}
@media not all and (min-width: 1100px) {
	section.page-nav .page-nav-container {
		padding: 3rem 2rem;
	}
}
@media not all and (min-width: 1000px) {
	section.page-nav .page-nav-container {
		padding: 2rem;
	}
}
section.page-nav .page-nav-buttons {
	--arkb-btn-width: 33.33%;
	--arkb-gap--x: 2rem;
	--arkb-gap--y: 2rem;
}
@media not all and (min-width: 1000px) {
	section.page-nav .page-nav-buttons {
		--arkb-btn-width: 50%;
		--arkb-gap--x: 1.5rem;
		--arkb-gap--y: 1.5rem;
	}
}
@media not all and (min-width: 700px) {
	section.page-nav .page-nav-buttons {
		--arkb-btn-width: 100%;
	}
}
@media not all and (min-width: 600px) {
	section.page-nav .page-nav-buttons {
		--arkb-gap--x: 1rem;
		--arkb-gap--y: 1rem;
	}
}
section.page-nav .page-nav-button {
	width: calc(var(--arkb-btn-width) - var(--arkb-gap--x));
}
@media (min-width: 1000px) {
	section.page-nav .page-nav-button:nth-child(2) {
		-webkit-animation-delay: 0.25s;
		        animation-delay: 0.25s;
	}
	section.page-nav .page-nav-button:nth-child(3) {
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
section.page-nav .page-nav-button .ark-block-button__link {
	width: 100%;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 26px 40px;
}
@media not all and (min-width: 600px) {
	section.page-nav .page-nav-button .ark-block-button__link {
		padding: 20px 30px 20px 24px;
	}
}
section.page-nav .page-nav-button .ark-block-button__link:hover .ark-block-button__text::before {
	-webkit-filter: brightness(0) invert(1);
	        filter: brightness(0) invert(1);
}
section.page-nav .page-nav-button .ark-block-button__text {
	font-size: 1.125rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-left: 3rem;
}
@media not all and (min-width: 600px) {
	section.page-nav .page-nav-button .ark-block-button__text {
		padding-left: 44px;
	}
}
section.page-nav .page-nav-button .ark-block-button__text::before {
	content: "";
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 40px;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
	pointer-events: none;
}
@media not all and (min-width: 600px) {
	section.page-nav .page-nav-button .ark-block-button__text::before {
		width: 32px;
		height: 32px;
		left: 24px;
	}
}
section.page-nav .page-nav-button.service .ark-block-button__text::before {
	background-image: url(../img/service.svg);
}
section.page-nav .page-nav-button.patent .ark-block-button__text::before {
	background-image: url(../img/patent.svg);
}
section.page-nav .page-nav-button.trademark .ark-block-button__text::before {
	background-image: url(../img/trademark.svg);
}
section.page-nav .page-nav-button.design .ark-block-button__text::before {
	background-image: url(../img/design.svg);
}
section.page-nav .page-nav-button.foreign-filing .ark-block-button__text::before {
	background-image: url(../img/global.svg);
}
section.page-nav .page-nav-button.localization .ark-block-button__text::before {
	background-image: url(../img/global.svg);
}
section.page-nav .page-nav-button.legal .ark-block-button__text::before {
	background-image: url(../img/legal.svg);
}
section.page-nav .page-nav-button.feature .ark-block-button__text::before {
	background-image: url(../img/feature.svg);
}
section.page-nav .page-nav-button.members .ark-block-button__text::before {
	background-image: url(../img/members.svg);
}
section.page-nav .page-nav-button.case .ark-block-button__text::before {
	background-image: url(../img/case.svg);
}
section.page-nav .page-nav-button.faq .ark-block-button__text::before {
	background-image: url(../img/faq.svg);
}
section.page-nav .page-nav-button.about .ark-block-button__text::before {
	background-image: url(../img/about.svg);
}
section.page-nav .page-nav-button.book .ark-block-button__text::before {
	background-image: url(../img/publication.svg);
}
section.page-nav .page-nav-button.recruit .ark-block-button__text::before {
	background-image: url(../img/recruit.svg);
}
section.page-nav .page-nav-button .ark-block-button__icon.-right {
	-webkit-transform: scale(1.75) translateX(0.25em);
	        transform: scale(1.75) translateX(0.25em);
	position: relative;
	right: unset;
}

/* ホーム | コラム */
@media (min-width: 1000px) {
	section.column .ark-block-section__bodyInner {
		display: grid;
		grid-template-columns: 260px 1fr;
		grid-template-rows: -webkit-min-content auto 1fr;
		grid-template-rows: min-content auto 1fr;
		gap: 2rem 3rem;
	}
}
@media (min-width: 1000px) {
	section.column .ark-block-heading {
		grid-column: 1/2;
		grid-row: 1/2;
	}
	section.column .ark-block-heading .ark-block-heading__sub {
		text-align: left;
	}
	section.column .ark-block-heading .ark-block-heading__main {
		text-align: left;
	}
	section.column .ark-block-heading .ark-block-heading__line {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
@media (min-width: 1000px) {
	section.column .column-text {
		grid-column: 1/2;
		grid-row: 2/3;
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	section.column .column-list {
		grid-column: 2/3;
		grid-row: 1/4;
		margin-top: 0;
		-webkit-animation-delay: 0.5s;
		        animation-delay: 0.5s;
	}
}
section.column .column-list .p-postList__link {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	overflow: hidden;
}
section.column .column-list .p-postList__body {
	border-top: 3px solid #2085be;
	padding: 1rem;
}
section.column .column-list .p-postList__title {
	color: #135072;
}
@media (min-width: 1000px) {
	section.column .column-buttons {
		grid-column: 1/2;
		grid-row: 3/4;
		align-self: start;
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
		margin-top: 0;
	}
}

/* ホーム | お問い合わせ */
section.cta {
	border-top: 1px solid #eee;
}
@media (min-width: 1000px) {
	section.cta .cta-text {
		font-size: 1.125rem;
		line-height: 2;
	}
}
@media (min-width: 600px) {
	section.cta .cta-text {
		text-align: center;
	}
}
section.cta .footer-cta-columns {
	--arkb-gap--x: 0rem;
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	max-width: 900px;
	padding: 40px 20px;
	margin-left: auto;
	margin-right: auto;
}
@media not all and (min-width: 1000px) {
	section.cta .footer-cta-columns {
		padding: 32px 20px;
	}
}
section.cta .footer-cta-columns .contact-col {
	border-left: 1px solid #ccc;
}
@media not all and (min-width: 600px) {
	section.cta .footer-cta-columns .contact-col {
		border-top: 1px solid #ccc;
		border-left: unset;
		padding-top: 1.5rem;
	}
}
section.cta h3.cta-title {
	color: #135072;
	font-size: 1.125rem;
}
section.cta h3.cta-title + * {
	margin-top: 10px;
}
section.cta .tel-button .ark-block-button__link {
	background: transparent;
	padding: 0 0 0 1rem;
}
section.cta .tel-button .ark-block-button__icon {
	fill: #2085be;
	-webkit-transform: scale(1.5) translateX(-0.25em);
	        transform: scale(1.5) translateX(-0.25em);
}
section.cta .tel-button .ark-block-button__text {
	color: #333;
	font-size: 2.25rem;
	font-weight: 500;
	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: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
	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;
	}
}

/* 下層ページ | 共通 */
.p-topArea {
	min-height: 200px;
	padding: 1rem 0;
}
@media not all and (min-width: 1000px) {
	.p-topArea {
		min-height: 150px;
	}
}
@media not all and (min-width: 600px) {
	.p-topArea {
		min-height: 100px;
	}
}
.p-topArea.c-filterLayer::after {
	content: "";
	background-color: #fff;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.3;
}
.p-topArea .p-topArea__body {
	color: #333;
	text-shadow: unset;
}
.p-topArea .p-topArea__title {
	color: #135072;
}
.p-topArea .c-pageTitle__main {
	--icon-display: none;
	--icon-src: none;
	--icon-size: 3rem;
	--icon-gap: 0.25em 0.375em;
	font-size: 2.5em;
	line-height: 1.5;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: var(--icon-gap);
}
@media not all and (min-width: 1000px) {
	.p-topArea .c-pageTitle__main {
		--icon-size: 2.5rem;
		font-size: 2em;
	}
}
@media not all and (min-width: 600px) {
	.p-topArea .c-pageTitle__main {
		--icon-size: 2rem;
		font-size: 1.5em;
	}
}
:root:lang(en-US) .p-topArea .c-pageTitle__main {
	font-size: 3em;
}
@media not all and (min-width: 1000px) {
	:root:lang(en-US) .p-topArea .c-pageTitle__main {
		font-size: 2.5em;
	}
}
@media not all and (min-width: 600px) {
	:root:lang(en-US) .p-topArea .c-pageTitle__main {
		font-size: 1.75em;
	}
}
.p-topArea .c-pageTitle__main::before {
	content: "";
	display: var(--icon-display);
	background-image: var(--icon-src);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	width: var(--icon-size);
	height: var(--icon-size);
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
body.slug-service .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/service.svg);
}
body.slug-patent .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/patent.svg);
}
body.slug-trademark .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/trademark.svg);
}
body.slug-design .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/design.svg);
}
body.slug-foreign-filing .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/global.svg);
}
body.slug-localization .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/global.svg);
}
body.slug-legal-service .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/legal.svg);
}
body.slug-feature .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/feature.svg);
}
body.slug-case .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/case.svg);
}
body.slug-faq .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/faq.svg);
}
body.slug-about .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/about.svg);
}
body.slug-publication .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/publication.svg);
}
body.slug-contact .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/contact.svg);
}
body.slug-privacy-policy .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/privacy-policy.svg);
}
body.category-topics .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/topics.svg);
}
body.category-column .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/column.svg);
}
body.post-type-archive-members .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/members.svg);
}
body.tax-license .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/members.svg);
}
body.term-patent .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/patent.svg);
}
body.term-electrical .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/electrical.svg);
}
body.term-mechanical .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/mechanical.svg);
}
body.term-chemical .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/chemical.svg);
}
body.term-trademark .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/trademark.svg);
}
body.term-design .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/design.svg);
}
body.tax-language .p-topArea .c-pageTitle__main {
	--icon-display: inline-block;
	--icon-src: url(../img/language.svg);
}
.p-topArea .c-pageTitle__sub {
	font-size: 1.125rem;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.1em;
	margin-top: 0 !important;
}
@media not all and (min-width: 600px) {
	.p-topArea .c-pageTitle__sub {
		font-size: 1rem;
	}
}
.p-topArea .c-pageTitle__sub::before, .p-topArea .c-pageTitle__sub::after {
	content: none;
}
.p-topArea .p-topArea__excerpt {
	font-size: 1rem;
	line-height: 1.8;
}
@media (min-width: 1000px) {
	.p-topArea .p-topArea__excerpt {
		font-size: 1.125rem;
		line-height: 2;
	}
}

body:not(.home) section.page-lead {
	--arkb-padding: 3rem 0 0;
}
@media not all and (min-width: 600px) {
	body:not(.home) section.page-lead {
		--arkb-padding: 2rem 0 0;
	}
}
body:not(.home) section.page-lead h2.ark-block-heading__main {
	font-size: 2em;
}
@media not all and (min-width: 1000px) {
	body:not(.home) section.page-lead h2.ark-block-heading__main {
		font-size: 1.75em;
	}
}
@media not all and (min-width: 600px) {
	body:not(.home) section.page-lead h2.ark-block-heading__main {
		font-size: 1.3em;
	}
}
:root:lang(en-US) body:not(.home) section.page-lead h2.ark-block-heading__main {
	font-size: 2.5em;
}
@media not all and (min-width: 1000px) {
	:root:lang(en-US) body:not(.home) section.page-lead h2.ark-block-heading__main {
		font-size: 2em;
	}
}
@media not all and (min-width: 600px) {
	:root:lang(en-US) body:not(.home) section.page-lead h2.ark-block-heading__main {
		font-size: 1.75em;
	}
}
@media (min-width: 1000px) {
	body:not(.home) section.page-lead .lead-text {
		font-size: 1.125rem;
		line-height: 2;
		text-align: center;
	}
}
body:not(.home) .anchorNav {
	--arkb-btn-width: 25%;
	--arkb-gap--x: 2rem;
}
@media not all and (min-width: 1000px) {
	body:not(.home) .anchorNav {
		--arkb-btn-width: 50%;
	}
}
@media not all and (min-width: 600px) {
	body:not(.home) .anchorNav {
		--arkb-gap--x: 1rem;
		--arkb-gap--y: 0.5rem;
	}
}
body:not(.home) .anchorNav .anchorNav-button {
	width: calc(var(--arkb-btn-width) - var(--arkb-gap--x));
}
body:not(.home) .anchorNav .anchorNav-button .ark-block-button__link {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	-webkit-box-shadow: unset;
	        box-shadow: unset;
	gap: 0.5em;
	padding: 0.75em 0 0.75em 0.5em;
	-webkit-transition: border-color 0.25s, -webkit-filter 0.25s;
	transition: border-color 0.25s, -webkit-filter 0.25s;
	transition: filter 0.25s, border-color 0.25s;
	transition: filter 0.25s, border-color 0.25s, -webkit-filter 0.25s;
}
body:not(.home) .anchorNav .anchorNav-button .ark-block-button__link:hover {
	border-color: #2085be;
}
body:not(.home) .anchorNav .anchorNav-button .ark-block-button__link:hover .ark-block-button__icon.-right {
	fill: #fff;
	background-color: #2085be;
}
body:not(.home) .anchorNav .anchorNav-button .ark-block-button__text {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	font-size: 1.25rem;
	text-align: left;
	margin-right: 1.5rem;
}
@media not all and (min-width: 600px) {
	body:not(.home) .anchorNav .anchorNav-button .ark-block-button__text {
		font-size: 1rem;
	}
}
body:not(.home) .anchorNav .anchorNav-button .ark-block-button__icon.-right {
	position: relative;
	right: unset;
	-webkit-transform: scale(1.5) translateX(-0.5em);
	        transform: scale(1.5) translateX(-0.5em);
	-webkit-transition: fill 0.25sm background-color 0.25s;
	transition: fill 0.25sm background-color 0.25s;
}
body:not(.home) section.page-nav {
	--arkb-padding: 0 0 4rem;
}
@media not all and (min-width: 1000px) {
	body:not(.home) section.page-nav {
		--arkb-padding: 0 0 3rem !important;
	}
}
@media not all and (min-width: 600px) {
	body:not(.home) section.page-nav {
		--arkb-padding: 0 0 2rem !important;
	}
}

/* 業務分野 */
body.slug-service .service-columns {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 2rem;
	--arkb-gap--y: 2rem;
}
@media not all and (min-width: 1000px) {
	body.slug-service .service-columns {
		--arkb-gap--x: 1.5rem;
		--arkb-gap--y: 1.5rem;
	}
}
body.slug-service .service-columns .ark-block-columns__inner {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
body.slug-service .service-columns .service-column {
	background-color: #fff;
	-webkit-box-shadow: 0 0 0 1px #ccc;
	        box-shadow: 0 0 0 1px #ccc;
	border-radius: 10px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 1rem 1.5rem 1.5rem;
	-webkit-transition: -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
	transition: -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
	transition: filter 0.25s, box-shadow 0.25s;
	transition: filter 0.25s, box-shadow 0.25s, -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-service .service-columns .service-column {
		padding: 0.75rem 1rem 1rem;
	}
}
body.slug-service .service-columns .service-column:hover {
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
}
body.slug-service .service-columns .service-column:hover .more-text {
	color: #2085be;
}
body.slug-service .service-columns .service-column:hover .more-text .arkb-inline-icon {
	color: #fff;
	background-color: #2085be;
}
body.slug-service .service-columns lottie-player {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
@media not all and (min-width: 600px) {
	body.slug-service .service-columns lottie-player {
		width: 56px !important;
		height: 56px !important;
	}
}
body.slug-service .service-heading {
	border-bottom: 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;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.25rem;
	padding-bottom: 0.5rem;
}
body.slug-service .service-heading > * {
	margin-top: 0;
}
body.slug-service .service-title-group {
	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 0.5rem;
}
body.slug-service .service-title-group > * {
	margin-top: 0;
}
body.slug-service h2.service-title {
	color: #135072;
}
body.slug-service .service-subtitle {
	color: #2085be;
}
body.slug-service .service-body {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
body.slug-service .more-text {
	color: #90c2df;
	font-size: 0.875rem;
	text-align: right !important;
	margin-top: auto;
	-webkit-transform: translate(14px, 14px);
	        transform: translate(14px, 14px);
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-service .more-text {
		-webkit-transform: translate(6px, 6px);
		        transform: translate(6px, 6px);
	}
}
body.slug-service .more-text .arkb-inline-icon {
	color: #2085be;
	background-color: #e9f3f9;
	font-size: 0.75rem;
	border-radius: 9999px;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	margin-left: 0.25rem;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
body.slug-service .more-text .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

/* 各サービス */
@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: -webkit-min-content 1fr;
		grid-template-rows: min-content 1fr;
		gap: 1.5rem 4rem;
	}
	body.parent-slug-service .service-lead-container > :not(:first-child) {
		margin-top: 0;
	}
}
body.parent-slug-service .service-lead-title {
	color: #135072;
}
@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-title {
		grid-column: 1/2;
		grid-row: 1/2;
		font-size: 2em;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-image {
		grid-column: 2/3;
		grid-row: 1/3;
	}
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .service-lead-image {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
body.parent-slug-service .service-lead-image img {
	aspect-ratio: 2/1;
	-o-object-fit: cover;
	   object-fit: cover;
}
@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-image img {
		aspect-ratio: 3/2;
		border-radius: 20px;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-body {
		grid-column: 1/2;
		grid-row: 2/3;
		font-size: 1.125rem;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .service-lead-body._bottom {
		grid-column: 1/3;
		grid-row: 3/4;
	}
}
body.parent-slug-service .service-lead-body > :not(:first-child) {
	margin-top: 1.5rem;
}
@media (min-width: 1000px) {
	body.parent-slug-service .practice-text {
		font-size: 1.125rem;
	}
}
body.parent-slug-service .practice-container.patent {
	border-top: 1px solid #ccc;
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .practice-container.patent {
		border-top: none;
	}
}
body.parent-slug-service .practice-container.patent > :not(:first-child) {
	margin-top: 0;
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .practice-container.patent > :not(:first-child) {
		margin-top: 1.5rem;
	}
}
body.parent-slug-service .practice-container:not(.patent) {
	border: 1px solid #ccc;
	padding: 2rem;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .practice-container:not(.patent) {
		padding: 1rem;
	}
}
body.parent-slug-service .practice-columns {
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
	border-bottom: 1px solid #ccc;
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .practice-columns {
		--arkb-gap--y: 1rem;
		border-bottom: none;
	}
}
body.parent-slug-service .practice-columns .ark-block-columns__inner {
	padding: 2rem 0;
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .practice-columns .ark-block-columns__inner {
		padding: 0;
	}
}
body.parent-slug-service .practice-columns .title-col {
	--arkb-clmn-w--pc: 300px;
	--arkb-clmn-w--tab: 100%;
}
@media (min-width: 1000px) {
	body.parent-slug-service .practice-columns .title-col {
		padding-right: 2rem;
	}
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .practice-columns .title-col {
		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;
	}
}
body.parent-slug-service .practice-columns .content-col {
	--arkb-clmn-w--pc: calc(100% - 300px);
	--arkb-clmn-w--tab: 100%;
}
@media (min-width: 1000px) {
	body.parent-slug-service .practice-columns .content-col {
		border-left: 1px solid #ccc;
		padding-left: 2rem;
	}
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .practice-columns .content-col {
		border: 1px solid #ddd;
		padding: 1.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .practice-columns .content-col {
		padding: 1rem;
	}
}
body.parent-slug-service h3.practice-title {
	color: #135072;
	text-indent: -2em;
	padding-left: 2em;
	position: relative;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service h3.practice-title {
		text-indent: -40px;
		padding-left: 40px;
	}
}
body.parent-slug-service h3.practice-title::before {
	content: "";
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: inline-block;
	width: 40px;
	height: 40px;
	vertical-align: middle;
	margin-right: 0.5rem;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service h3.practice-title::before {
		width: 32px;
		height: 32px;
	}
}
body.parent-slug-service h3.practice-title.electrical::before {
	background-image: url(../img/electrical.svg);
}
body.parent-slug-service h3.practice-title.mechanical::before {
	background-image: url(../img/mechanical.svg);
}
body.parent-slug-service h3.practice-title.chemical::before {
	background-image: url(../img/chemical.svg);
}
body.parent-slug-service .practice-list {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 1rem 1.5rem;
	padding-left: 0;
}
@media (min-width: 1000px) {
	body.parent-slug-service .practice-list {
		font-size: 1.125rem;
	}
}
body.parent-slug-service .practice-list .practice-item {
	text-indent: -1.5em;
	padding-left: 1.5em;
	margin: 0;
}
body.parent-slug-service .practice-list .practice-item .arkb-inline-icon {
	color: #2085be;
	margin-right: 0.5em;
	-webkit-transform: scale(1.5);
	        transform: scale(1.5);
}
body.parent-slug-service .practice-list.patent .practice-item {
	width: calc(50% - 0.75rem);
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .practice-list.patent .practice-item {
		width: 100%;
	}
}
body.parent-slug-service .practice-list:not(.patent) .practice-item {
	width: calc(33.33% - 1rem);
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .practice-list:not(.patent) .practice-item {
		width: calc(50% - 0.75rem);
	}
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .practice-list:not(.patent) .practice-item {
		width: 100%;
	}
}
body.parent-slug-service .practice-buttons {
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	margin-top: 2rem;
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .practice-buttons {
		margin-top: 0;
		margin-left: auto;
	}
}
body.parent-slug-service .practice-buttons .ark-block-button__link {
	background-color: transparent;
	border-radius: unset;
	-webkit-box-shadow: unset;
	        box-shadow: unset;
	gap: 0.5rem;
	padding: 0;
}
body.parent-slug-service .practice-buttons .ark-block-button__link:hover .ark-block-button__icon.-right {
	fill: #fff;
	background-color: #2085be;
}
body.parent-slug-service .practice-buttons .ark-block-button__text {
	font-size: 0.875rem;
	line-height: 1;
	border-bottom: 1px solid currentColor;
}
body.parent-slug-service .practice-buttons .ark-block-button__icon.-right {
	position: relative;
	right: unset;
	-webkit-transition: fill 0.25s, background-color 0.25s;
	transition: fill 0.25s, background-color 0.25s;
}
body.parent-slug-service .work-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
	border-top: 1px solid #ccc;
}
body.parent-slug-service .work-columns .work-column {
	border-bottom: 1px solid #ccc;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-top: 2rem;
	padding-bottom: 2rem;
	position: relative;
}
@media (min-width: 1000px) {
	body.parent-slug-service .work-columns .work-column:nth-child(odd) {
		padding-right: 2rem;
	}
	body.parent-slug-service .work-columns .work-column:nth-child(odd)::after {
		content: "";
		background-color: #ccc;
		width: 1px;
		height: calc(100% - 3rem);
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	body.parent-slug-service .work-columns .work-column:nth-child(even) {
		padding-left: 2rem;
	}
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .work-columns .work-column {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .work-columns .work-column {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}
body.parent-slug-service .work-columns .work-column > :not(:first-child) {
	margin-top: 1rem;
}
body.parent-slug-service h3.work-title {
	color: #135072;
	text-indent: -2em;
	padding-left: 2em;
}
body.parent-slug-service h3.work-title .arkb-inline-icon {
	color: #2085be;
	background-color: #f1f7fb;
	border-radius: 50%;
	width: 1.5em;
	height: 1.5em;
	margin-right: 0.5em;
	-webkit-transform: scale(1.25);
	        transform: scale(1.25);
}
body.parent-slug-service h3.work-title .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
body.parent-slug-service .work-body {
	height: 100%;
}
body.parent-slug-service .work-body > :not(:first-child) {
	margin-top: 1rem;
}
body.parent-slug-service .work-text a .arkb-inline-icon {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
body.parent-slug-service .flow-step > :not(:first-child) {
	margin-top: 1rem;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .flow-step > :not(:first-child) {
		margin-top: 0.5rem;
	}
}
body.parent-slug-service .flow-step-item {
	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;
}
body.parent-slug-service .flow-step-item > :not(:first-child) {
	margin-top: 0;
}
body.parent-slug-service .flow-step-item:last-child .flow-num::before {
	content: none;
}
body.parent-slug-service .flow-num {
	position: relative;
}
body.parent-slug-service .flow-num::before {
	content: "";
	border-left: 3px dashed #d2e7f2;
	width: 1px;
	height: calc(100% + 1rem);
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .flow-num::before {
		height: calc(100% + 0.5rem);
	}
}
body.parent-slug-service .flow-num-inner {
	color: #2085be;
	background-color: #fff;
	font-size: 0.875rem;
	line-height: 1;
	border: 1px solid currentColor;
	border-radius: 50%;
	width: 4.5em;
	height: 4.5em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-top: 4px;
	position: relative;
	z-index: 1;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .flow-num-inner {
		font-size: 0.625rem;
	}
}
body.parent-slug-service .flow-content {
	border-bottom: 1px solid #ccc;
	padding: 1rem 0 2rem;
	margin-left: 1rem;
}
@media (min-width: 1000px) {
	body.parent-slug-service .flow-content {
		display: grid;
		grid-template-columns: auto;
		grid-template-rows: -webkit-min-content 1fr;
		grid-template-rows: min-content 1fr;
		gap: 1rem 3rem;
	}
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .flow-content {
		padding: 0.75rem 0 1.5rem;
	}
}
body.parent-slug-service .flow-content > :not(:first-child) {
	margin-top: 0;
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .flow-content > :not(:first-child) {
		margin-top: 1rem;
	}
}
body.parent-slug-service h3.flow-title {
	color: #135072;
}
@media (min-width: 1000px) {
	body.parent-slug-service h3.flow-title {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .flow-text-area {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}
body.parent-slug-service .flow-text-area > :not(:first-child) {
	margin-top: 1rem;
}
@media (min-width: 1000px) {
	body.parent-slug-service .flow-sub-area {
		grid-column: 2/3;
		grid-row: 1/3;
		max-width: 300px;
		align-self: start;
	}
}
body.parent-slug-service .flow-image img {
	border-radius: 10px;
	aspect-ratio: 16/9;
	-o-object-fit: cover;
	   object-fit: cover;
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .flow-image img {
		aspect-ratio: 2/1;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .fee-text {
		font-size: 1.125rem;
	}
}
body.parent-slug-service .member-list {
	border: 1px solid #ccc;
	padding: 1.5rem;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .member-list {
		padding: 0.75rem;
	}
}
body.parent-slug-service .member-list .p-postList {
	--list-gap--x: 0.5rem;
	--list-gap--y: 0.5rem;
	border-top: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: var(--list-gap--y) 0;
	margin-left: calc(var(--list-gap--x) * -1);
}
@media (min-width: 1000px) {
	body.parent-slug-service .member-list .p-postList {
		font-size: 1.125rem;
	}
}
body.parent-slug-service .member-list .p-postList__item {
	width: calc(14.2857142857% - var(--list-gap--x));
	padding-left: 1.5em;
	margin-left: var(--list-gap--x);
	position: relative;
}
@media not all and (min-width: 1200px) {
	body.parent-slug-service .member-list .p-postList__item {
		width: calc(16.6666666667% - var(--list-gap--x));
	}
}
@media not all and (min-width: 1000px) {
	body.parent-slug-service .member-list .p-postList__item {
		width: calc(20% - var(--list-gap--x));
	}
}
@media not all and (min-width: 800px) {
	body.parent-slug-service .member-list .p-postList__item {
		width: calc(33.3333333333% - var(--list-gap--x));
	}
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .member-list .p-postList__item {
		width: calc(50% - var(--list-gap--x));
	}
}
:root:lang(en-US) body.parent-slug-service .member-list .p-postList__item {
	width: calc(20% - var(--list-gap--x));
}
@media not all and (min-width: 1200px) {
	:root:lang(en-US) body.parent-slug-service .member-list .p-postList__item {
		width: calc(25% - var(--list-gap--x));
	}
}
@media not all and (min-width: 1000px) {
	:root:lang(en-US) body.parent-slug-service .member-list .p-postList__item {
		width: calc(33.3333333333% - var(--list-gap--x));
	}
}
@media not all and (min-width: 800px) {
	:root:lang(en-US) body.parent-slug-service .member-list .p-postList__item {
		width: calc(50% - var(--list-gap--x));
	}
}
body.parent-slug-service .member-list .p-postList__item::before {
	background-color: var(--arkb-list-icon_color);
	content: " ";
	clip-path: circle(16% at 50%);
	display: block;
	width: 1em;
	height: auto;
	position: absolute;
	top: 0;
	left: 0.25em;
}
body.parent-slug-service .member-list .p-postList__link {
	border-bottom: none;
	padding: 0;
}
body.parent-slug-service .member-list .p-postList__link:hover {
	color: #2085be;
	text-decoration: underline;
}
body.parent-slug-service .member-list .p-postList__title {
	color: inherit;
	font-size: inherit;
	font-weight: 400;
	-webkit-transition: color 0.25s;
	transition: color 0.25s;
}
@media (min-width: 1000px) {
	body.parent-slug-service .international-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: -webkit-min-content 1fr;
		grid-template-rows: min-content 1fr;
		gap: 2rem 4rem;
	}
	body.parent-slug-service .international-container > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .international-container .text-area {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .international-container .image-area {
		grid-column: 2/3;
		grid-row: 1/2;
	}
}
body.parent-slug-service .international-container .image-area > :not(:first-child) {
	margin-top: 0.5rem;
}
@media (min-width: 1000px) {
	body.parent-slug-service .international-container .method-area {
		grid-column: 1/3;
		grid-row: 2/3;
	}
}
body.parent-slug-service .international-container .method-area > :not(:first-child) {
	margin-top: 1rem;
}
body.parent-slug-service .country-container {
	border: 1px solid #ccc;
	padding: 1rem;
	margin-top: 2.5rem;
}
body.parent-slug-service .country-container > :not(:first-child) {
	margin-top: 0.5rem;
}
body.parent-slug-service h4.country-title {
	color: #135072;
	background-color: #fff;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0 4px;
	margin: -2.25rem 0 0 -4px;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service h4.country-title {
		margin: -2.125rem 0 0 -4px;
	}
}
body.parent-slug-service h4.country-title .arkb-inline-icon {
	color: #2085be;
	font-size: 1.25em;
	vertical-align: -2px;
	margin-right: 0.2em;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .method-table {
		border-top: 1px solid #ccc;
	}
	body.parent-slug-service .method-table th {
		border-width: 0 !important;
		text-align: left !important;
	}
	body.parent-slug-service .method-table td {
		border-width: 0 0 1px 0 !important;
	}
}
body.parent-slug-service .process-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 4rem;
	--arkb-gap--y: 1.5rem;
}
body.parent-slug-service .process-columns .pw-modal-trigger {
	position: relative;
}
body.parent-slug-service .process-columns .pw-modal-trigger::after {
	content: "クリックで拡大";
	color: #fff;
	background-color: rgba(0, 0, 0, 0.65);
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="7" stroke="%23fff" stroke-width="2" fill="none"/><path d="M16 16l5 5" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>');
	background-repeat: no-repeat;
	background-position: 8px 50%;
	background-size: 14px 14px;
	font-size: 12px;
	line-height: 1;
	border-radius: 9999px;
	opacity: 0;
	position: absolute;
	top: 8px;
	right: 8px;
	-webkit-transform: translateY(-4px);
	        transform: translateY(-4px);
	-webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, transform 0.25s;
	transition: opacity 0.25s, transform 0.25s, -webkit-transform 0.25s;
	pointer-events: none;
	padding: 6px 8px 6px 28px;
}
:root:lang(en-US) body.parent-slug-service .process-columns .pw-modal-trigger::after {
	content: "Click to zoom";
}
@media (hover: hover) and (pointer: fine) {
	body.parent-slug-service .process-columns .pw-modal-trigger:hover::after, body.parent-slug-service .process-columns .pw-modal-trigger:focus::after {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
body.parent-slug-service .pw-modal__body .flowchart-image-container {
	padding: 1.5rem;
}
body.parent-slug-service .tmds-columns {
	--arkb-clmn-w--tab: 100%;
	--arkb-gap--x: 2rem;
}
body.parent-slug-service .tmds-columns .text-col {
	--arkb-clmn-w--pc: 66.66%;
}
body.parent-slug-service .tmds-columns .image-col {
	--arkb-clmn-w--pc: 33.33%;
}
body.parent-slug-service .tmds-banner a {
	background-color: #fff;
	-webkit-box-shadow: 0 0 0 1px #ccc;
	        box-shadow: 0 0 0 1px #ccc;
	border-radius: 8px;
	overflow: hidden;
	padding: 6px;
	-webkit-transition: -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
	transition: -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
	transition: filter 0.25s, box-shadow 0.25s;
	transition: filter 0.25s, box-shadow 0.25s, -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .tmds-banner a {
		padding: 4px;
	}
}
body.parent-slug-service .tmds-banner a:hover {
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
}
body.parent-slug-service .tmds-banner img {
	border-radius: 6px;
}
@media (min-width: 1000px) {
	body.parent-slug-service .coverrage-text {
		font-size: 1.125rem;
	}
}
body.parent-slug-service .coverrage-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 4rem;
	--arkb-gap--y: 2rem;
}
body.parent-slug-service .coverage-regions {
	--ark-color--border: #ccc;
}
@media (min-width: 1000px) {
	body.parent-slug-service .coverage-regions {
		font-size: 1.125rem;
	}
}
body.parent-slug-service .coverage-regions .ark-block-dl__div {
	padding: 0.75em 0;
}
body.parent-slug-service .coverage-regions .ark-block-dl__dt {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 5em;
	        flex: 0 0 5em;
	color: #135072;
}
body.parent-slug-service .coverage-regions .ark-block-dl__dd {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	border-left: 1px solid #ccc;
	padding-left: 1em;
}
body.parent-slug-service .coverage-list {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 0 1rem;
	padding-left: 0;
}
body.parent-slug-service .coverage-item {
	margin: 0;
}
@media (min-width: 1000px) {
	body.parent-slug-service .us-cn-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem 3rem;
	}
	body.parent-slug-service .us-cn-container > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .us-cn-container .text-area {
		grid-column: 1/2;
	}
}
body.parent-slug-service .us-cn-container .text-area > :not(:first-child) {
	margin-top: 1.5rem;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .us-cn-container .text-area > :not(:first-child) {
		margin-top: 1rem;
	}
}
@media (min-width: 1000px) {
	body.parent-slug-service .us-cn-container .image-area {
		grid-column: 2/3;
	}
}
body.parent-slug-service .member-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 33.33%;
	--arkb-clmn-w--mb: 50%;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .member-columns {
		--arkb-gap--x: 0rem;
		--arkb-gap--y: 0rem;
	}
}
body.parent-slug-service .member-columns .member-column {
	border-radius: 10px;
	-webkit-box-shadow: 0 0 0 1px #ddd;
	        box-shadow: 0 0 0 1px #ddd;
	overflow: hidden;
	-webkit-transition: -webkit-box-shadow 0.25s, -webkit-filter 0.25s;
	transition: -webkit-box-shadow 0.25s, -webkit-filter 0.25s;
	transition: box-shadow 0.25s, filter 0.25s;
	transition: box-shadow 0.25s, filter 0.25s, -webkit-box-shadow 0.25s, -webkit-filter 0.25s;
}
@media not all and (min-width: 600px) {
	body.parent-slug-service .member-columns .member-column {
		border-radius: 0;
	}
}
body.parent-slug-service .member-columns .member-column[data-arkb-linkbox]:hover {
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	-webkit-filter: brightness(1.05);
	        filter: brightness(1.05);
}
body.parent-slug-service .member-columns .member-column[data-arkb-linkbox]:hover .member-image img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
body.parent-slug-service .member-columns .member-column[data-arkb-linkbox]:hover .more-text {
	color: #2085be;
}
body.parent-slug-service .member-columns .member-column[data-arkb-linkbox]:hover .more-text .arkb-inline-icon {
	color: #fff;
	background-color: #2085be;
}
body.parent-slug-service .member-columns .member-column > :not(:first-child) {
	margin-top: 0;
}
body.parent-slug-service .member-image {
	overflow: hidden;
}
body.parent-slug-service .member-image img {
	aspect-ratio: 4/3;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: top;
	   object-position: top;
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
body.parent-slug-service .member-body {
	background-color: #fff;
	padding: 1rem;
}
body.parent-slug-service .member-body > :not(:first-child) {
	margin-top: 0;
}
body.parent-slug-service .member-license {
	color: #2085be;
	font-size: 0.875rem;
}
body.parent-slug-service h4.member-name {
	color: #135072;
}
body.parent-slug-service .more-text {
	color: #90c2df;
	font-size: 0.875rem;
	text-align: right !important;
	padding-top: 4px;
	margin-top: auto !important;
	-webkit-transform: translate(6px, 6px);
	        transform: translate(6px, 6px);
}
body.parent-slug-service .more-text .arkb-inline-icon {
	color: #2085be;
	background-color: #e9f3f9;
	font-size: 0.75rem;
	border-radius: 9999px;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	margin-left: 0.25rem;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
body.parent-slug-service .more-text .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

/* 事務所の特徴 */
body.slug-feature .anchorNav {
	--arkb-btn-width: 0;
}
@media not all and (min-width: 700px) {
	body.slug-feature .anchorNav {
		--arkb-btn-width: 100%;
	}
}
@media not all and (min-width: 600px) {
	body.slug-feature .anchorNav {
		--arkb-gap--x: 0rem;
	}
}
body.slug-feature .anchorNav .anchorNav-button .ark-block-button__link {
	position: relative;
}
body.slug-feature .anchorNav .anchorNav-button .ark-block-button__link::before {
	color: currentColor;
	font-size: 2em;
	font-weight: 700;
	line-height: 1;
	opacity: 0.3;
	visibility: visible;
	position: relative;
	-webkit-transition: opacity 0.25s;
	transition: opacity 0.25s;
}
body.slug-feature .anchorNav .anchorNav-button .ark-block-button__link:hover::before {
	opacity: 1;
}
body.slug-feature .anchorNav .anchorNav-button.feat-01 .ark-block-button__link::before {
	content: "01";
}
body.slug-feature .anchorNav .anchorNav-button.feat-02 .ark-block-button__link::before {
	content: "02";
}
body.slug-feature .anchorNav .anchorNav-button.feat-03 .ark-block-button__link::before {
	content: "03";
}
body.slug-feature .feature-container {
	background-color: #fff;
}
@media (min-width: 1000px) {
	body.slug-feature .feature-container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: -webkit-min-content 1fr auto;
		grid-template-rows: min-content 1fr auto;
		gap: 2rem 5rem;
	}
}
body.slug-feature .feature-container > :not(:first-child) {
	margin-top: 0;
}
@media not all and (min-width: 1000px) {
	body.slug-feature .feature-container > :not(:first-child) {
		margin-top: 1.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-feature .feature-container > :not(:first-child) {
		margin-top: 1rem;
	}
}
body.slug-feature .feature-container + .feature-container {
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	body.slug-feature .feature-container + .feature-container {
		margin-top: 2rem;
	}
}
body.slug-feature .feature-heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 0.5rem;
}
@media (min-width: 1000px) {
	body.slug-feature .feature-heading {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-feature .feature-heading {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
body.slug-feature .feature-heading > * {
	margin-top: 0;
}
body.slug-feature .feature-num {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	color: #2085be;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
}
@media not all and (min-width: 600px) {
	body.slug-feature .feature-num {
		font-size: 3rem;
	}
}
body.slug-feature h2.feature-title {
	color: #135072;
}
@media (min-width: 1000px) {
	body.slug-feature h2.feature-title {
		font-size: 2em;
	}
}
@media not all and (min-width: 600px) {
	body.slug-feature h2.feature-title {
		font-size: 1.375em;
	}
}
@media (min-width: 1000px) {
	body.slug-feature .feature-text-area {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}
@media (min-width: 1000px) {
	body.slug-feature .feature-text {
		font-size: 1.125rem;
	}
}
@media (min-width: 1000px) {
	body.slug-feature .feature-image-area {
		grid-column: 2/3;
		grid-row: 1/3;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-feature .feature-image-area {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
body.slug-feature .feature-image img {
	aspect-ratio: 2/1;
	-o-object-fit: cover;
	   object-fit: cover;
}
@media (min-width: 1000px) {
	body.slug-feature .feature-image img {
		aspect-ratio: 3/2;
		border-radius: 20px;
	}
}
body.slug-feature .feature-detail-area {
	background-color: #f1f7fb;
	padding: 2rem 3rem 3rem;
}
@media (min-width: 1000px) {
	body.slug-feature .feature-detail-area {
		grid-column: 1/3;
		grid-row: 3/4;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-feature .feature-detail-area {
		padding: 1.5rem 2.5rem 2.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-feature .feature-detail-area {
		padding: 1.5rem min(48px, 4vw);
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
body.slug-feature .feature-detail-area > :not(:first-child) {
	margin-top: 1rem;
}
@media not all and (min-width: 1000px) {
	body.slug-feature .feature-detail-area > :not(:first-child) {
		margin-top: 0.75rem;
	}
}
body.slug-feature h3.feature-detail-title {
	color: #135072;
	padding: 0.25em 0.6em;
	position: relative;
}
@media (min-width: 1000px) {
	body.slug-feature h3.feature-detail-title {
		font-size: 1.75em;
	}
}
@media not all and (min-width: 600px) {
	body.slug-feature h3.feature-detail-title {
		font-size: 1.25em;
	}
}
body.slug-feature h3.feature-detail-title:before {
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2085be), color-stop(50%, #1d65b1));
	background-image: linear-gradient(180deg, #2085be 50%, #1d65b1 50%);
	width: 5px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	body.slug-feature h3.feature-detail-title:before {
		width: 4px;
	}
}
body.slug-feature .technical-columns {
	--arkb-clmn-w--pc: 33.33%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 2rem;
	--arkb-gap--y: 2rem;
}
@media not all and (min-width: 1000px) {
	body.slug-feature .technical-columns {
		--arkb-gap--x: 1.5rem;
		--arkb-gap--y: 1.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-feature .technical-columns {
		--arkb-gap--x: 1rem;
		--arkb-gap--y: 1rem;
	}
}
body.slug-feature .technical-columns .technical-column {
	background-color: #fff;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.75rem;
	padding: 2rem 1.5rem 1rem;
	-webkit-transition: -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
	transition: -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
	transition: filter 0.25s, box-shadow 0.25s;
	transition: filter 0.25s, box-shadow 0.25s, -webkit-filter 0.25s, -webkit-box-shadow 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-feature .technical-columns .technical-column {
		padding: 1rem;
	}
}
body.slug-feature .technical-columns .technical-column:hover {
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
}
body.slug-feature .technical-columns .technical-column:hover .more-text .arkb-inline-icon {
	color: #fff;
	background-color: #2085be;
}
body.slug-feature .technical-columns .technical-column > :not(:first-child) {
	margin-top: 0;
}
body.slug-feature .technical-columns lottie-player {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
@media not all and (min-width: 600px) {
	body.slug-feature .technical-columns lottie-player {
		width: 48px !important;
		height: 48px !important;
	}
}
body.slug-feature .technical-columns .more-text {
	color: #2085be;
	font-size: 0.875rem;
	text-align: center;
	border-top: 1px solid #ddd;
	padding-top: 0.75rem;
	margin-top: auto !important;
}
body.slug-feature .technical-columns .more-text .arkb-inline-icon {
	color: #2085be;
	background-color: #e9f3f9;
	font-size: 0.75rem;
	border-radius: 9999px;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	margin-left: 0.25rem;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
body.slug-feature .technical-columns .more-text .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
body.slug-feature .technical-title-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.75rem 0.25rem;
}
@media not all and (min-width: 600px) {
	body.slug-feature .technical-title-group {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: row-reverse;
		        flex-direction: row-reverse;
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: flex-end;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
body.slug-feature .technical-title-group > :not(:first-child) {
	margin-top: 0;
}
body.slug-feature h4.technical-title {
	color: #135072;
	line-height: 1.3;
}
@media (min-width: 1000px) {
	body.slug-feature h4.technical-title {
		font-size: 1.5em;
		text-align: center;
	}
}
body.slug-feature .flow-columns {
	--arkb-clmn-w--pc: 25%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
	background-color: #fff;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
}
body.slug-feature .flow-columns .flow-column {
	padding: 1.5rem;
	position: relative;
}
@media not all and (min-width: 600px) {
	body.slug-feature .flow-columns .flow-column {
		padding: 1.5rem 1rem;
	}
}
@media (min-width: 1000px) {
	body.slug-feature .flow-columns .flow-column:not(:first-child)::before {
		content: "";
		background-color: #ddd;
		width: 1px;
		height: calc(100% - 3rem);
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
}
@media not all and (min-width: 1000px) {
	body.slug-feature .flow-columns .flow-column:not(:first-child)::before {
		content: "";
		background-color: #ddd;
		width: calc(100% - 3rem);
		height: 1px;
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
@media not all and (min-width: 600px) {
	body.slug-feature .flow-columns .flow-column:not(:first-child)::before {
		width: calc(100% - 2rem);
	}
}
body.slug-feature .flow-num {
	color: #2085be;
	font-size: 0.875rem;
	line-height: 1.1;
	border: 1px solid currentColor;
	border-radius: 4px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 4px 8px;
}
body.slug-feature h4.flow-title {
	color: #135072;
	line-height: 1.3;
	text-indent: -1.8em;
	padding-left: 1.8em;
	margin-top: 0.5rem;
}
body.slug-feature h4.flow-title .arkb-inline-icon {
	color: #2085be;
	font-size: 1.5em;
	vertical-align: middle;
	margin-right: 0.375rem;
	-webkit-transform: translateY(-2px);
	        transform: translateY(-2px);
}

/* お客様事例 */
body.slug-case .case-group {
	background-color: #f1f7fb;
	padding: 3rem;
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-group {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-group {
		background-color: inherit;
		padding: 0;
	}
}
body.slug-case .case-group > :not(:first-child) {
	margin-top: 3rem;
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-group > :not(:first-child) {
		margin-top: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-group > :not(:first-child) {
		margin-top: 0;
	}
}
body.slug-case .case-container {
	background-color: #fff;
	border-top: 8px solid #2085be;
	border-radius: 8px;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	padding: 2rem 2.5rem 2.5rem;
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-container {
		border-top-width: 6px;
		border-radius: 6px;
		padding: 1.5rem 2rem 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-container {
		border-top-width: 4px;
		border-radius: 0;
		-webkit-box-shadow: unset;
		        box-shadow: unset;
		padding: 1.5rem 0;
	}
	body.slug-case .case-container:last-child {
		border-bottom: 6px solid #e9f3f9;
	}
}
body.slug-case .case-container > :not(:first-child) {
	margin-top: 2rem;
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-container > :not(:first-child) {
		margin-top: 1.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-container > :not(:first-child) {
		margin-top: 1rem;
	}
}
body.slug-case .case-heading {
	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: 1rem;
}
body.slug-case .case-heading > * {
	margin-top: 0;
}
body.slug-case .case-num {
	font-size: 1.5rem;
	line-height: 1.5;
	color: #2085be;
	background-color: #e9f3f9;
	padding-left: 0.25em;
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-num {
		font-size: 1.25rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-num {
		font-size: 1.125rem;
	}
}
body.slug-case .case-num .has-inline-color {
	color: #fff;
	width: 1.5em;
	height: 1.5em;
	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;
	margin-left: 0.25em;
}
body.slug-case h2.case-title {
	color: #135072;
}
body.slug-case .case-client {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 2rem;
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-client {
		gap: 1.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-client {
		gap: 1rem;
	}
}
body.slug-case .case-client > * {
	margin-top: 0;
}
body.slug-case .case-icon {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-icon {
		width: 88px;
		height: 88px;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-icon {
		width: 64px;
		height: 64px;
	}
}
body.slug-case .case-review {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	background-color: #f1f7fb;
	border-radius: 10px;
	padding: 3rem;
	position: relative;
}
@media (min-width: 600px) {
	body.slug-case .case-review {
		font-size: 1.125rem;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-review {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-review {
		padding: 1.5rem;
	}
}
body.slug-case .case-review::before, body.slug-case .case-review::after {
	content: "“";
	font-family: Arial, sans-serif;
	font-size: 6rem;
	line-height: 1;
	color: var(--ark-color--main);
	display: inline-block;
	opacity: 0.2;
	position: absolute;
	z-index: 0;
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-review::before, body.slug-case .case-review::after {
		font-size: 4.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-case .case-review::before, body.slug-case .case-review::after {
		font-size: 3.5rem;
	}
}
body.slug-case .case-review::before {
	top: 0.25rem;
	left: 0.5rem;
}
body.slug-case .case-review::after {
	right: 0.5rem;
	bottom: 0.25rem;
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}
@media (min-width: 1000px) {
	body.slug-case .case-detail {
		grid-column: 1/3;
		grid-row: 3/4;
	}
}
body.slug-case .case-detail > :not(:first-child) {
	margin-top: 1.5em;
}
body.slug-case h3.case-detail-title {
	color: #135072;
	border-bottom: 1px solid #ccc;
	padding: 0.25em 0.6em;
	position: relative;
}
body.slug-case h3.case-detail-title::before {
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2085be), color-stop(50%, #1d65b1));
	background-image: linear-gradient(180deg, #2085be 50%, #1d65b1 50%);
	width: 5px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	body.slug-case h3.case-detail-title::before {
		width: 4px;
	}
}
body.slug-case h4.case-support-title {
	color: #2085be;
	background-color: #fff;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0 8px;
	margin-top: -2.375rem;
	margin-left: -8px;
}
body.slug-case .case-support-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 2rem;
	--arkb-gap--y: 2rem;
	margin-top: 2.5rem !important;
}
body.slug-case .case-support-columns .case-support-column {
	border: 1px solid #ddd;
	padding: 1.5rem;
	position: relative;
}
body.slug-case .case-support-columns .case-support-column.action::before {
	content: "";
	background: #2085be;
	-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXNBcnJvd1JpZ2h0IiB2aWV3Qm94PSIwIDAgNDQ4IDUxMiI+PHBhdGggZD0iTTQzOC42IDI3OC42YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zbC0xNjAtMTYwYy0xMi41LTEyLjUtMzIuOC0xMi41LTQ1LjMgMHMtMTIuNSAzMi44IDAgNDUuM0wzMzguOCAyMjQgMzIgMjI0Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMybDMwNi43IDBMMjMzLjQgMzkzLjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MHoiPjwvcGF0aD48L3N2Zz4=);
	        mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXNBcnJvd1JpZ2h0IiB2aWV3Qm94PSIwIDAgNDQ4IDUxMiI+PHBhdGggZD0iTTQzOC42IDI3OC42YzEyLjUtMTIuNSAxMi41LTMyLjggMC00NS4zbC0xNjAtMTYwYy0xMi41LTEyLjUtMzIuOC0xMi41LTQ1LjMgMHMtMTIuNSAzMi44IDAgNDUuM0wzMzguOCAyMjQgMzIgMjI0Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnMxNC4zIDMyIDMyIDMybDMwNi43IDBMMjMzLjQgMzkzLjRjLTEyLjUgMTIuNS0xMi41IDMyLjggMCA0NS4zczMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MHoiPjwvcGF0aD48L3N2Zz4=);
	-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.5rem;
	height: 1.5rem;
	opacity: 0.4;
	position: absolute;
	top: 50%;
	left: -1.8rem;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 1000px) {
	body.slug-case .case-support-columns .case-support-column.action::before {
		-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXNBcnJvd0Rvd24iIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48cGF0aCBkPSJNMTY5LjQgNDcwLjZjMTIuNSAxMi41IDMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MGMxMi41LTEyLjUgMTIuNS0zMi44IDAtNDUuM3MtMzIuOC0xMi41LTQ1LjMgMEwyMjQgMzcwLjggMjI0IDY0YzAtMTcuNy0xNC4zLTMyLTMyLTMycy0zMiAxNC4zLTMyIDMybDAgMzA2LjdMNTQuNiAyNjUuNGMtMTIuNS0xMi41LTMyLjgtMTIuNS00NS4zIDBzLTEyLjUgMzIuOCAwIDQ1LjNsMTYwIDE2MHoiPjwvcGF0aD48L3N2Zz4=);
		        mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjFlbSIgd2lkdGg9IjFlbSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBhcmlhLWhpZGRlbj0idHJ1ZSIgZGF0YS1pY29uPSJGYXNBcnJvd0Rvd24iIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48cGF0aCBkPSJNMTY5LjQgNDcwLjZjMTIuNSAxMi41IDMyLjggMTIuNSA0NS4zIDBsMTYwLTE2MGMxMi41LTEyLjUgMTIuNS0zMi44IDAtNDUuM3MtMzIuOC0xMi41LTQ1LjMgMEwyMjQgMzcwLjggMjI0IDY0YzAtMTcuNy0xNC4zLTMyLTMyLTMycy0zMiAxNC4zLTMyIDMybDAgMzA2LjdMNTQuNiAyNjUuNGMtMTIuNS0xMi41LTMyLjgtMTIuNS00NS4zIDBzLTEyLjUgMzIuOCAwIDQ1LjNsMTYwIDE2MHoiPjwvcGF0aD48L3N2Zz4=);
		top: -1.8rem;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
body.slug-case .case-support-columns .case-support-column > :not(:first-child) {
	margin-top: 0.75rem;
}
body.slug-case .csat-chart-columns {
	--arkb-clmn-w--pc: calc(100% / 6);
	--arkb-clmn-w--tab: calc(100% / 3);
	--arkb-clmn-w--mb: 50%;
	--arkb-gap--x: 1rem;
	--arkb-gap--y: 1rem;
}
body.slug-case h4.csat-chart-title {
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
}
body.slug-case h4.csat-chart-title.prime-works {
	font-weight: 700;
}
body.slug-case .csat-item {
	margin-top: 0.5rem;
}
body.slug-case .csat-chart {
	width: 100% !important;
	max-width: 157px;
	height: auto !important;
	margin-left: auto;
	margin-right: auto;
}
body.slug-case .csat-legend {
	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: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 1.5em;
	padding-left: 0;
}
body.slug-case .csat-legend .csat-legend-item {
	font-size: 0.875rem;
	line-height: 1.5rem;
	margin: 0;
}
body.slug-case .csat-legend .csat-legend-item > mark {
	font-size: 1.25em;
	vertical-align: middle;
	margin-right: 2px;
}
@media (min-width: 1000px) {
	body.slug-case .closing-text {
		font-size: 1.125rem;
		line-height: 2;
		text-align: center;
		margin-top: 3rem;
	}
}

/* よくある質問 */
body.slug-faq .faq-columns {
	--arkb-gap--x: 2rem;
}
@media (min-width: 1200px) {
	body.slug-faq .faq-columns {
		--arkb-gap--x: 3rem;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-faq .faq-columns .ark-block-columns__inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}
body.slug-faq .faq-columns .toc-col {
	--arkb-clmn-w--pc: 27%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
}
body.slug-faq .faq-columns .content-col {
	--arkb-clmn-w--pc: 73%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
}
body.slug-faq .faq-columns .content-col > :first-child {
	margin-top: 0 !important;
}
body.slug-faq .faq-columns .content-col > * {
	margin-top: 1.5em;
}
body.slug-faq .faq-toc {
	position: sticky;
	top: calc(var(--ark-offset--y) + 1.5rem);
	background: #f1f7fb;
	border-width: 0 6px 6px 6px;
	border-style: solid;
	border-color: #f1f7fb;
	border-radius: 8px;
	padding: 0;
}
body.slug-faq .faq-toc .toc-title {
	color: #135072;
	font-size: 1.25rem;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.25rem;
	padding: 0.375rem 0.5rem;
	margin-bottom: 0;
}
@media not all and (min-width: 600px) {
	body.slug-faq .faq-toc .toc-title {
		font-size: 1.1rem;
	}
}
body.slug-faq .faq-toc .toc-title .arkb-inline-icon {
	color: #2085be;
	font-size: 1.25em;
	line-height: 1;
}
body.slug-faq .faq-toc .toc-list {
	list-style: decimal-leading-zero;
	background-color: #fff;
	padding: 0.5em 0.5em 0.5em 2.5em;
	margin-top: 0;
}
@media (min-width: 1000px) {
	body.slug-faq .faq-toc .toc-list {
		max-height: calc(100vh - (var(--ark-offset--y) + 6rem));
		overflow-y: auto;
	}
}
body.slug-faq .faq-toc .toc-list li {
	line-height: 1.5;
	padding: 0.25em 0;
}
body.slug-faq .faq-toc .toc-list li a {
	color: inherit;
}
body.slug-faq .faq-toc .toc-list li a:not(:hover) {
	text-decoration: none;
}
body.slug-faq .faq-toc ::marker {
	color: #2085be;
	font-family: inherit;
}
body.slug-faq h2.faq-title {
	color: #135072;
	background-color: #f1f7fb;
	border-width: 4px 0 4px 0;
	border-style: solid;
	border-color: #e9f3f9;
	padding: 0.25em 0.5em;
}
body.slug-faq .faq-accordion {
	border-top: 1px solid #ccc;
}
body.slug-faq .faq-accordion .ark-block-accordion__item {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	position: relative;
	-webkit-transition-property: border-color, -webkit-box-shadow, -webkit-transform;
	transition-property: border-color, -webkit-box-shadow, -webkit-transform;
	transition-property: border-color, box-shadow, transform;
	transition-property: border-color, box-shadow, transform, -webkit-box-shadow, -webkit-transform;
	-webkit-transition-duration: 0.25s;
	        transition-duration: 0.25s;
}
@media (hover: hover) and (pointer: fine) {
	body.slug-faq .faq-accordion .ark-block-accordion__item:hover {
		border-color: transparent;
		-webkit-box-shadow: var(--box-shadow);
		        box-shadow: var(--box-shadow);
		-webkit-transform: translateY(-1px);
		        transform: translateY(-1px);
		z-index: 2;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__item.is-opened .ark-block-accordion__title {
	background-color: #f1f7fb;
}
body.slug-faq .faq-accordion .ark-block-accordion__item.is-opened .ark-block-accordion__title::before {
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
}
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-color: transparent;
	-webkit-box-align: inherit;
	    -ms-flex-align: inherit;
	        align-items: inherit;
	gap: 1rem;
	padding: 1em;
	-webkit-transition: background-color 0.25s;
	transition: background-color 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-faq .faq-accordion .ark-block-accordion__title {
		padding: 0.75em;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__title::before {
	content: "Q";
	color: #2085be;
	background-color: #f1f7fb;
	font-size: 2rem;
	font-weight: 400;
	border-radius: 50%;
	width: 1.5em;
	height: 1.5em;
	-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;
	-webkit-transition: background-color 0.25s, -webkit-box-shadow 0.25s;
	transition: background-color 0.25s, -webkit-box-shadow 0.25s;
	transition: background-color 0.25s, box-shadow 0.25s;
	transition: background-color 0.25s, box-shadow 0.25s, -webkit-box-shadow 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-faq .faq-accordion .ark-block-accordion__title::before {
		font-size: 1.5rem;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__label {
	color: #135072;
	font-size: 1.25em;
	font-weight: 700;
	-ms-flex-item-align: center;
	    align-self: center;
	padding-right: 0;
}
@media not all and (min-width: 600px) {
	body.slug-faq .faq-accordion .ark-block-accordion__label {
		font-size: 1.125rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-faq .faq-accordion .ark-block-accordion__label {
		font-size: 1rem;
	}
}
:root:lang(en-US) body.slug-faq .faq-accordion .ark-block-accordion__label {
	word-break: normal;
}
body.slug-faq .faq-accordion .ark-block-accordion__icon {
	color: #90c2df;
	width: 1.25em;
	height: 1.25em;
	-ms-flex-item-align: center;
	    align-self: center;
}
@media not all and (min-width: 600px) {
	body.slug-faq .faq-accordion .ark-block-accordion__icon {
		width: 1em;
		height: 1em;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__body {
	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: 1rem;
	padding: 1em;
}
@media not all and (min-width: 600px) {
	body.slug-faq .faq-accordion .ark-block-accordion__body {
		padding: 0.75em;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__body::before {
	content: "A";
	color: #ff511f;
	background-color: #ffeee9;
	font-size: 2rem;
	font-weight: 400;
	border-radius: 50%;
	width: 1.5em;
	height: 1.5em;
	-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;
	-webkit-transition: -webkit-box-shadow 0.25s;
	transition: -webkit-box-shadow 0.25s;
	transition: box-shadow 0.25s;
	transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-faq .faq-accordion .ark-block-accordion__body::before {
		font-size: 1.5rem;
	}
}
body.slug-faq .faq-accordion .ark-block-accordion__content {
	-ms-flex-item-align: center;
	    align-self: center;
}
body.slug-faq .faq-accordion .ark-block-accordion__content > :not(:first-child) {
	margin-top: 1rem;
}

/* 事務所紹介 */
@media (min-width: 1000px) {
	body.slug-about section.about-philosophy .ark-block-section__bodyInner {
		display: grid;
		grid-template-columns: 3fr 2fr;
		grid-template-rows: -webkit-min-content auto 1fr;
		grid-template-rows: min-content auto 1fr;
		gap: 3rem 4rem;
	}
	body.slug-about section.about-philosophy .ark-block-section__bodyInner > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-heading {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-heading h2.ark-block-heading__main {
		text-align: left;
	}
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-heading .ark-block-heading__sub {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		top: 50%;
		left: unset;
		right: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-heading .ark-block-heading__line {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-text-area {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-text-area._bottom {
		grid-column: 1/3;
		grid-row: 3/4;
		margin-top: -2rem !important;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-about .philosophy-text-area._bottom {
		margin-top: 1rem !important;
	}
}
body.slug-about .philosophy-text-area > :not(:first-child) {
	margin-top: 1rem;
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-text {
		font-size: 1.125rem;
	}
}
body.slug-about .philosophy-list {
	list-style: none;
	border-top: 1px solid #ccc;
	padding-left: 0;
}
body.slug-about .philosophy-item {
	color: #135072;
	font-weight: 700;
	text-indent: -1.3em;
	border-bottom: 1px solid #ccc;
	padding: 0.75rem 0.5rem 0.75rem 1.3em;
	margin: 0;
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-item {
		font-size: 1.25rem;
	}
}
body.slug-about .philosophy-item::before {
	content: "";
	background-color: #2085be;
	display: inline-block;
	width: 1em;
	height: 1em;
	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M480-321.69 321.69-480 480-638.31 638.31-480 480-321.69Zm51 186.3q-10.23 10.23-23.69 15.66-13.46 5.42-27.31 5.42-13.85 0-27.31-5.42-13.46-5.43-23.69-15.66L134.23-430.15q-9.84-9.85-15.27-23.31-5.42-13.46-5.42-26.92 0-13.47 5.42-26.93 5.43-13.46 15.27-23.3l294.16-294.16q10.84-10.84 23.99-16.27 13.16-5.42 27.62-5.42t27.62 5.42q13.15 5.43 23.99 16.27l294.16 294.16q9.84 9.84 15.27 23.3 5.42 13.46 5.42 26.93 0 13.46-5.42 26.92-5.43 13.46-15.27 23.31L531-135.39Zm-44.46-63.53 274.92-274.93q2.69-2.69 2.69-6.53 0-3.85-2.69-6.54L486.54-761.85q-2.69-2.69-6.54-2.5-3.85.2-6.54 2.89L198.15-486.15q-2.69 2.69-2.5 6.15.2 3.46 2.89 6.15l274.92 274.93q2.69 2.69 6.54 2.69t6.54-2.69Z"/></svg>');
	        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M480-321.69 321.69-480 480-638.31 638.31-480 480-321.69Zm51 186.3q-10.23 10.23-23.69 15.66-13.46 5.42-27.31 5.42-13.85 0-27.31-5.42-13.46-5.43-23.69-15.66L134.23-430.15q-9.84-9.85-15.27-23.31-5.42-13.46-5.42-26.92 0-13.47 5.42-26.93 5.43-13.46 15.27-23.3l294.16-294.16q10.84-10.84 23.99-16.27 13.16-5.42 27.62-5.42t27.62 5.42q13.15 5.43 23.99 16.27l294.16 294.16q9.84 9.84 15.27 23.3 5.42 13.46 5.42 26.93 0 13.46-5.42 26.92-5.43 13.46-15.27 23.31L531-135.39Zm-44.46-63.53 274.92-274.93q2.69-2.69 2.69-6.53 0-3.85-2.69-6.54L486.54-761.85q-2.69-2.69-6.54-2.5-3.85.2-6.54 2.89L198.15-486.15q-2.69 2.69-2.5 6.15.2 3.46 2.89 6.15l274.92 274.93q2.69 2.69 6.54 2.69t6.54-2.69Z"/></svg>');
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	vertical-align: middle;
	-webkit-transform: translateY(-0.1em);
	        transform: translateY(-0.1em);
	margin-right: 6px;
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-image-area {
		grid-column: 2/3;
		grid-row: 1/3;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-about .philosophy-image-area {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-image {
		height: 100%;
	}
}
body.slug-about .philosophy-image img {
	aspect-ratio: 2/1;
	-o-object-fit: cover;
	   object-fit: cover;
}
@media (min-width: 1000px) {
	body.slug-about .philosophy-image img {
		aspect-ratio: 1/1;
		border-radius: 20px;
	}
}
body.slug-about .principle-area {
	background-color: #f1f7fb;
	padding: 2rem 3rem 3rem;
}
@media (min-width: 1000px) {
	body.slug-about .principle-area {
		grid-column: 1/3;
		grid-row: 3/4;
	}
	:root:lang(en-US) body.slug-about .principle-area {
		grid-row: 4/5;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-about .principle-area {
		padding: 1.5rem 2.5rem 2.5rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .principle-area {
		padding: 1.5rem min(48px, 4vw);
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
body.slug-about h3.principle-heading {
	color: #135072;
	padding: 0.25em 0.6em;
	position: relative;
}
@media (min-width: 1000px) {
	body.slug-about h3.principle-heading {
		font-size: 1.75em;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about h3.principle-heading {
		font-size: 1.25em;
	}
}
body.slug-about h3.principle-heading::before {
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2085be), color-stop(50%, #1d65b1));
	background-image: linear-gradient(180deg, #2085be 50%, #1d65b1 50%);
	width: 5px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	body.slug-about h3.principle-heading::before {
		width: 4px;
	}
}
body.slug-about .principle-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;
	margin-top: 20px;
}
@media not all and (min-width: 600px) {
	body.slug-about .principle-columns {
		--arkb-gap--y: 1rem;
	}
}
body.slug-about .principle-card {
	cursor: pointer;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr -webkit-min-content;
	grid-template-columns: 1fr min-content;
	grid-template-rows: -webkit-min-content auto 1fr;
	grid-template-rows: min-content auto 1fr;
	gap: 0.5rem 0.5rem;
	padding: 1.5rem 1.5rem 2rem;
	position: relative;
	-webkit-transition-property: grid-template-rows, -webkit-box-shadow;
	transition-property: grid-template-rows, -webkit-box-shadow;
	transition-property: box-shadow, grid-template-rows;
	transition-property: box-shadow, grid-template-rows, -webkit-box-shadow, -ms-grid-rows;
	-webkit-transition-duration: 0.25s;
	        transition-duration: 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-about .principle-card {
		grid-template-columns: auto 1fr -webkit-min-content;
		grid-template-columns: auto 1fr min-content;
		grid-template-rows: -webkit-min-content 1fr;
		grid-template-rows: min-content 1fr;
		padding: 1rem 1rem 1.75rem;
	}
}
body.slug-about .principle-card:focus {
	-webkit-box-shadow: 0 0 0 4px rgba(32, 133, 190, 0.15);
	        box-shadow: 0 0 0 4px rgba(32, 133, 190, 0.15);
}
body.slug-about .principle-card:not(.is-open) {
	grid-template-rows: -webkit-min-content auto 0fr;
	grid-template-rows: min-content auto 0fr;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}
body.slug-about .principle-card:not(.is-open) .principle-body {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
}
body.slug-about .principle-card.is-open {
	grid-template-rows: -webkit-min-content auto 1fr;
	grid-template-rows: min-content auto 1fr;
	height: inherit;
}
body.slug-about .principle-card.is-open::after {
	content: "- Close";
}
body.slug-about .principle-card.is-open .principle-icon {
	-webkit-animation: IconBounce 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) 1;
	        animation: IconBounce 500ms cubic-bezier(0.18, 0.89, 0.32, 1.28) 1;
	-webkit-transform-origin: center bottom;
	        transform-origin: center bottom;
}
body.slug-about .principle-card.is-open .principle-body {
	opacity: 1;
	margin-top: 0.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-about .principle-card.is-open .principle-body {
		margin-top: 0.5rem;
	}
}
body.slug-about .principle-card::after {
	content: "+ View More";
	color: #90c2df;
	display: inline-block;
	text-align: center;
	font-size: 0.875rem;
	line-height: 1;
	position: absolute;
	right: 1.5rem;
	bottom: 0.75rem;
	pointer-events: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
@media not all and (min-width: 600px) {
	body.slug-about .principle-card::after {
		right: 1rem;
	}
}
body.slug-about .principle-card > :not(:first-child) {
	margin-top: 0;
}
body.slug-about .principle-num {
	grid-column: 1/2;
	grid-row: 1/2;
	color: #2085be;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1;
}
@media not all and (min-width: 600px) {
	body.slug-about .principle-num {
		font-size: 2rem;
		-ms-flex-item-align: center;
		    align-self: center;
	}
}
body.slug-about h4.principle-title {
	grid-column: 1/2;
	grid-row: 2/3;
	color: #135072;
}
@media (min-width: 1000px) {
	body.slug-about h4.principle-title {
		font-size: 1.5em;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about h4.principle-title {
		grid-column: 2/3;
		grid-row: 1/2;
		align-self: center;
	}
}
body.slug-about .principle-icon {
	grid-column: 2/3;
	grid-row: 1/3;
	color: #2085be;
}
@media not all and (min-width: 600px) {
	body.slug-about .principle-icon {
		grid-column: 3/4;
		grid-row: 1/2;
		--arkb-icon-size: 3em !important;
	}
}
body.slug-about .principle-body {
	grid-column: 1/3;
	grid-row: 3/4;
	overflow: hidden;
	-webkit-transition-property: max-height, opacity, margin-top;
	transition-property: max-height, opacity, margin-top;
	-webkit-transition-duration: 0.25s;
	        transition-duration: 0.25s;
}
@media not all and (min-width: 600px) {
	body.slug-about .principle-body {
		grid-column: 1/4;
		grid-row: 2/3;
	}
}
@media (min-width: 1000px) {
	body.slug-about section.about-message .ark-block-section__bodyInner {
		display: grid;
		grid-template-columns: 3fr 2fr;
		grid-template-rows: -webkit-min-content auto 1fr;
		grid-template-rows: min-content auto 1fr;
		gap: 3rem 4rem;
	}
	body.slug-about section.about-message .ark-block-section__bodyInner > :not(:first-child) {
		margin-top: 0;
	}
}
@media (min-width: 1000px) {
	body.slug-about .message-heading {
		grid-column: 1/2;
		grid-row: 1/2;
	}
}
@media (min-width: 1000px) {
	body.slug-about .message-heading h2.ark-block-heading__main {
		text-align: left;
	}
}
@media (min-width: 1000px) {
	body.slug-about .message-heading .ark-block-heading__sub {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		top: 50%;
		left: unset;
		right: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
}
@media (min-width: 1000px) {
	body.slug-about .message-heading .ark-block-heading__line {
		-webkit-box-pack: start;
		    -ms-flex-pack: start;
		        justify-content: flex-start;
	}
}
@media (min-width: 1000px) {
	body.slug-about .message-text-area {
		grid-column: 1/2;
		grid-row: 2/4;
		font-size: 1.125rem;
	}
}
body.slug-about .message-text-area > :not(:first-child) {
	margin-top: 1.5rem;
}
@media (min-width: 1000px) {
	body.slug-about .message-image-area {
		grid-column: 2/3;
		grid-row: 1/3;
		align-self: center;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-about .message-image-area {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
body.slug-about .message-image img {
	aspect-ratio: 2/1;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: 50% 0%;
	   object-position: 50% 0%;
}
@media (min-width: 1000px) {
	body.slug-about .message-image img {
		aspect-ratio: 3/4;
		border-radius: 20px;
	}
}
@media (min-width: 1000px) {
	body.slug-about .message-sign-area {
		grid-column: 2/3;
		grid-row: 3/4;
		justify-self: end;
		margin-top: -1.5rem !important;
	}
}
body.slug-about .message-sign {
	text-align: right;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-left: auto;
}
@media (min-width: 1000px) {
	body.slug-about section.about-overview .ark-block-section__bodyInner > :not(:first-child) {
		margin-top: 3rem;
	}
}
body.slug-about .overview-stat {
	background-color: #f1f7fb;
	padding: 3rem;
}
@media not all and (min-width: 1000px) {
	body.slug-about .overview-stat {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .overview-stat {
		padding: 1.5rem;
	}
}
body.slug-about .stat-columns {
	--arkb-clmn-w--pc: 25%;
	--arkb-clmn-w--tab: 25%;
	--arkb-clmn-w--mb: 50%;
	margin-left: auto;
	margin-right: auto;
}
body.slug-about .stat-columns .ark-block-columns__inner {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
body.slug-about .stat-columns .stat-column {
	position: relative;
}
body.slug-about .stat-columns .stat-column:not(:first-child)::before {
	content: "";
	background-color: #ddd;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 50%;
	left: -0.75rem;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	body.slug-about .stat-columns .stat-column:nth-child(odd)::before {
		content: none;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .stat-columns .stat-column:nth-child(n+3)::after {
		content: "";
		background-color: #ddd;
		width: 100%;
		height: 1px;
		position: absolute;
		top: -0.75rem;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
	}
}
body.slug-about h3.stat-title {
	color: #135072;
	font-size: 1.125rem;
	text-align: center;
}
@media not all and (min-width: 600px) {
	body.slug-about h3.stat-title {
		font-size: 1rem;
	}
	:root:lang(en-US) body.slug-about h3.stat-title {
		font-size: 0.875rem;
	}
}
body.slug-about .stat-num {
	color: #2085be;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	margin-top: 0.5rem;
}
@media not all and (min-width: 600px) {
	body.slug-about .stat-num {
		font-size: 3rem;
	}
}
body.slug-about .stat-unit {
	font-family: "BIZ UDPGothic", sans-serif;
	text-align: center;
	margin-top: 0;
}
@media not all and (min-width: 600px) {
	body.slug-about .stat-unit {
		font-size: 0.875rem;
	}
}
@media (min-width: 1000px) {
	body.slug-about .overview-table {
		font-size: 1.125rem;
	}
}
body.slug-about .overview-table .ark-block-dl__div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	border: none;
	padding: 0;
}
@media not all and (min-width: 600px) {
	body.slug-about .overview-table .ark-block-dl__div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	body.slug-about .overview-table .ark-block-dl__div:last-child {
		border-bottom: 1px solid #ccc;
	}
}
@media (min-width: 1000px) {
	body.slug-about .overview-table .ark-block-dl__div:first-child .ark-block-dl__dt,
	body.slug-about .overview-table .ark-block-dl__div:first-child .ark-block-dl__dd {
		padding-top: 0;
	}
}
body.slug-about .overview-table .ark-block-dl__dt {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 15em;
	        flex: 0 0 15em;
	color: #135072;
	border-bottom: 1px solid #2085be;
	padding: 1.25em 1em;
	margin-right: 0;
}
@media not all and (min-width: 600px) {
	body.slug-about .overview-table .ark-block-dl__dt {
		-webkit-box-flex: inherit;
		    -ms-flex: inherit;
		        flex: inherit;
		background-color: #f1f7fb;
		border-top: 1px solid #ccc;
		border-bottom: none;
		padding: 0.5em;
	}
}
body.slug-about .overview-table .ark-block-dl__dd {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	border-bottom: 1px solid #ccc;
	padding: 1.25em 1em;
}
@media not all and (min-width: 600px) {
	body.slug-about .overview-table .ark-block-dl__dd {
		-webkit-box-flex: inherit;
		    -ms-flex: inherit;
		        flex: inherit;
		border-bottom: none;
		padding: 0.75em 0.5em;
	}
}
body.slug-about .overview-table .ark-block-dl__dd > :not(:first-child) {
	margin-top: 0;
}
body.slug-about .overview-table p a:not(:hover) {
	color: #333;
}
body.slug-about .overview-table .external-link a .arkb-inline-icon {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
body.slug-about .address-dd {
	display: grid;
	grid-template-columns: 1fr 350px;
	grid-template-rows: -webkit-min-content 1fr;
	grid-template-rows: min-content 1fr;
	gap: 1rem 2rem;
}
@media not all and (min-width: 1200px) {
	body.slug-about .address-dd {
		grid-template-columns: 1fr;
		grid-template-rows: -webkit-min-content auto auto;
		grid-template-rows: min-content auto auto;
	}
}
body.slug-about .address-container {
	grid-column: 1/2;
	grid-row: 1/2;
}
body.slug-about .address-container > :not(:first-child) {
	margin-top: 0;
}
body.slug-about .gmap-container {
	grid-column: 2/3;
	grid-row: 1/3;
}
@media not all and (min-width: 1200px) {
	body.slug-about .gmap-container {
		grid-column: 1/2;
		grid-row: 2/3;
	}
}
body.slug-about .gmap-container > :not(:first-child) {
	margin-top: 0.5rem;
}
body.slug-about .gmap-container .gmap {
	aspect-ratio: 4/3;
}
@media not all and (min-width: 1200px) {
	body.slug-about .gmap-container .gmap {
		aspect-ratio: 16/9;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .gmap-container .gmap {
		aspect-ratio: 4/3;
	}
}
body.slug-about .gmap-container .gmap-link {
	font-size: 1rem;
	text-align: right;
}
body.slug-about .gmap-container .gmap-link a {
	color: #2085be !important;
}
body.slug-about .gmap-container .gmap-link a .arkb-inline-icon:first-child {
	-webkit-transform: scale(1.25);
	        transform: scale(1.25);
	margin-right: 0.2rem;
}
body.slug-about .gmap-container .gmap-link a .arkb-inline-icon:last-child {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
body.slug-about .access-container {
	border: 1px solid #ddd;
	padding: 1rem;
	margin-top: 2.5rem !important;
	grid-column: 1/2;
	grid-row: 2/3;
	align-self: start;
}
@media not all and (min-width: 1200px) {
	body.slug-about .access-container {
		grid-column: 1/2;
		grid-row: 3/4;
		margin-top: 0 !important;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .access-container {
		border-width: 1px 0 0 0;
		padding: 1rem 0 0.5rem;
	}
}
:root:lang(en-US) body.slug-about .access-container {
	margin-top: 1rem !important;
}
@media not all and (min-width: 1200px) {
	:root:lang(en-US) body.slug-about .access-container {
		margin-top: 0 !important;
	}
}
body.slug-about .access-container > :not(:first-child) {
	margin-top: 0;
}
body.slug-about h3.access-list-title {
	background-color: #fff;
	font-size: 1rem;
	font-weight: 400;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0 4px;
	margin: -2rem 0 0 -4px;
}
@media not all and (min-width: 600px) {
	body.slug-about h3.access-list-title {
		padding: 0 4px 0 0;
		margin: -2rem 0 0 0;
	}
}
body.slug-about h3.access-list-title .arkb-inline-icon {
	color: #1d65b1;
	font-size: 1.25em;
	vertical-align: -2px;
	margin-right: 0.2em;
}
@media not all and (min-width: 600px) {
	body.slug-about h3.access-list-title .arkb-inline-icon {
		vertical-align: -1px;
	}
}
body.slug-about .access-list {
	font-size: 1rem;
	list-style: none;
	padding-left: 0;
}
@media not all and (min-width: 600px) {
	body.slug-about .access-list {
		font-size: 0.875rem;
	}
}
body.slug-about .access-list .access-item {
	text-indent: -1.4em;
	padding-left: 1.4em;
	margin: 0.5em 0 0;
}
body.slug-about .access-list .line-badge {
	padding: 0 2px;
}
body.slug-about .access-list .line-badge::before {
	content: "";
	display: inline-block;
	background: transparent;
	border: 3px solid var(--line-color, currentColor);
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
	margin-right: 0.25em;
}
body.slug-about .access-list .line-badge.tokyu-ty {
	--line-color: #da0042;
}
body.slug-about .access-list .line-badge.metro-hibiya {
	--line-color: #8f97a0;
}
body.slug-about .access-list .line-badge.jr-yamanote {
	--line-color: #80c241;
}
body.slug-about .access-list .line-badge.jr-saikyo {
	--line-color: #00a95f;
}
body.slug-about .tap-hint {
	color: #1d65b1;
	background-color: #e9f3f9;
	font-size: 12px;
	border-radius: 4px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 2px 6px 2px 4px;
}
@media (min-width: 600px) {
	body.slug-about .tap-hint {
		display: none;
	}
}
body.slug-about .tap-hint .arkb-inline-icon {
	font-size: 1.25em;
	line-height: 1;
	vertical-align: middle;
}
@media not all and (min-width: 600px) {
	body.slug-about .tap-hint + * {
		margin-top: 0.75rem !important;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-about .overview-gallery {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
body.slug-about .overview-gallery .pw-modal-trigger {
	position: relative;
}
body.slug-about .overview-gallery .pw-modal-trigger::after {
	content: "クリックで拡大";
	color: #fff;
	background-color: rgba(0, 0, 0, 0.65);
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="7" stroke="%23fff" stroke-width="2" fill="none"/><path d="M16 16l5 5" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>');
	background-repeat: no-repeat;
	background-position: 8px 50%;
	background-size: 14px 14px;
	font-size: 12px;
	line-height: 1;
	border-radius: 9999px;
	opacity: 0;
	position: absolute;
	top: 8px;
	right: 8px;
	-webkit-transform: translateY(-4px);
	        transform: translateY(-4px);
	-webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, transform 0.25s;
	transition: opacity 0.25s, transform 0.25s, -webkit-transform 0.25s;
	pointer-events: none;
	padding: 6px 8px 6px 28px;
}
:root:lang(en-US) body.slug-about .overview-gallery .pw-modal-trigger::after {
	content: "Click to zoom";
}
@media (hover: hover) and (pointer: fine) {
	body.slug-about .overview-gallery .pw-modal-trigger:hover::after, body.slug-about .overview-gallery .pw-modal-trigger:focus::after {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
body.slug-about .gallery-card > :not(:first-child) {
	margin-top: 0.5rem;
}
body.slug-about .gallery-image img {
	border-radius: 10px;
	aspect-ratio: 3/2;
	-o-object-fit: cover;
	   object-fit: cover;
}
body.slug-about .gallery-body > :not(:first-child) {
	margin-top: 0.75rem;
}
body.slug-about .gallery-text {
	display: none;
	line-height: var(--ark-line_height, 1.8);
}
body.slug-about h3.gallery-title {
	font-size: 1.25em;
	text-align: center;
}
@media not all and (min-width: 600px) {
	body.slug-about h3.gallery-title {
		font-size: 1em;
	}
}
body.slug-about .pw-modal__body .gallery-image img {
	border-radius: 0;
}
body.slug-about .pw-modal__body .gallery-body {
	padding: 2rem;
	margin-top: 0;
}
@media not all and (min-width: 600px) {
	body.slug-about .pw-modal__body .gallery-body {
		padding: 1rem;
	}
}
body.slug-about .pw-modal__body h3.gallery-title {
	font-size: 1.5em;
}
@media not all and (min-width: 600px) {
	body.slug-about .pw-modal__body h3.gallery-title {
		font-size: 1.25em;
	}
}
body.slug-about .pw-modal__body .gallery-text {
	display: block;
}
@media (min-width: 1000px) {
	body.slug-about section.about-culture .culture-description {
		font-size: 1.125rem;
		text-align: center;
	}
}
body.slug-about .culture-columns {
	--arkb-clmn-w--pc: 25%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 50%;
	--arkb-gap--x: 1.5rem;
	--arkb-gap--y: 1.5rem;
}
@media not all and (min-width: 1000px) {
	body.slug-about .culture-columns {
		--arkb-gap--x: 1rem;
		--arkb-gap--y: 1rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-about .culture-columns {
		--arkb-gap--x: 12px;
		--arkb-gap--y: 12px;
	}
}
body.slug-about .culture-columns .pw-modal-trigger {
	position: relative;
}
body.slug-about .culture-columns .pw-modal-trigger::after {
	content: "クリックで拡大";
	color: #fff;
	background-color: rgba(0, 0, 0, 0.65);
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="7" stroke="%23fff" stroke-width="2" fill="none"/><path d="M16 16l5 5" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>');
	background-repeat: no-repeat;
	background-position: 8px 50%;
	background-size: 14px 14px;
	font-size: 12px;
	line-height: 1;
	border-radius: 9999px;
	opacity: 0;
	position: absolute;
	top: 8px;
	right: 8px;
	-webkit-transform: translateY(-4px);
	        transform: translateY(-4px);
	-webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, transform 0.25s;
	transition: opacity 0.25s, transform 0.25s, -webkit-transform 0.25s;
	pointer-events: none;
	padding: 6px 8px 6px 28px;
}
:root:lang(en-US) body.slug-about .culture-columns .pw-modal-trigger::after {
	content: "Click to zoom";
}
@media (hover: hover) and (pointer: fine) {
	body.slug-about .culture-columns .pw-modal-trigger:hover::after, body.slug-about .culture-columns .pw-modal-trigger:focus::after {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}
body.slug-about .culture-card > :not(:first-child) {
	margin-top: 0.5rem;
}
body.slug-about .culture-image img {
	border-radius: 10px;
	aspect-ratio: 3/2;
	-o-object-fit: cover;
	   object-fit: cover;
}
body.slug-about .culture-body > :not(:first-child) {
	margin-top: 1rem;
}
body.slug-about h3.culture-title {
	font-size: 1.25em;
	text-align: center;
}
@media not all and (min-width: 600px) {
	body.slug-about h3.culture-title {
		font-size: 1em;
	}
}
body.slug-about .culture-text {
	display: none;
	line-height: var(--ark-line_height, 1.8);
}
body.slug-about .pw-modal__body .culture-image img {
	border-radius: 0;
}
body.slug-about .pw-modal__body .culture-body {
	padding: 2rem;
	margin-top: 0;
}
@media not all and (min-width: 600px) {
	body.slug-about .pw-modal__body .culture-body {
		padding: 1rem;
	}
}
body.slug-about .pw-modal__body h3.culture-title {
	font-size: 1.5em;
}
@media not all and (min-width: 600px) {
	body.slug-about .pw-modal__body h3.culture-title {
		font-size: 1.25em;
	}
}
body.slug-about .pw-modal__body .culture-text {
	display: block;
}

/* 出版物 */
body.slug-publication .publication-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
	border-top: 1px solid #ccc;
}
body.slug-publication .publication-columns .publication-column {
	position: relative;
	border-bottom: 1px solid #ccc;
	padding: 2rem 0;
}
@media (min-width: 1000px) {
	body.slug-publication .publication-columns .publication-column:nth-child(odd) {
		padding: 2rem 2rem 2rem 0;
	}
	body.slug-publication .publication-columns .publication-column:nth-child(odd)::after {
		content: "";
		background-color: #ccc;
		width: 1px;
		height: calc(100% - 4rem);
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	body.slug-publication .publication-columns .publication-column:nth-child(even) {
		padding: 2rem 0 2rem 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-publication .publication-columns .publication-column {
		padding: 1rem 0;
	}
}
body.slug-publication .publication-container {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
body.slug-publication .publication-container > :not(:first-child) {
	margin-top: 2rem;
}
@media not all and (min-width: 600px) {
	body.slug-publication .publication-container > :not(:first-child) {
		margin-top: 1rem;
	}
}
body.slug-publication .publication-head {
	display: grid;
	grid-template-columns: 170px 1fr;
	grid-template-rows: -webkit-min-content 1fr;
	grid-template-rows: min-content 1fr;
	gap: 1.5rem 2rem;
}
@media not all and (min-width: 1000px) {
	body.slug-publication .publication-head {
		grid-template-columns: 1fr 3fr;
	}
}
@media not all and (min-width: 600px) {
	body.slug-publication .publication-head {
		gap: 1rem;
	}
}
body.slug-publication .publication-head > :not(:first-child) {
	margin-top: 0;
}
body.slug-publication .publication-image {
	grid-column: 1/2;
	grid-row: 1/3;
}
@media not all and (min-width: 600px) {
	body.slug-publication .publication-image {
		grid-row: 1/2;
	}
}
body.slug-publication .publication-image img {
	width: 100%;
}
body.slug-publication .publication-image.noimg img {
	aspect-ratio: 5/6;
	-o-object-fit: cover;
	   object-fit: cover;
}
body.slug-publication h2.publication-title {
	grid-column: 2/3;
	grid-row: 1/2;
	color: #135072;
	font-size: 1.375em;
	border-bottom: 4px double #ddd;
	padding-bottom: 0.5rem;
}
@media not all and (min-width: 1000px) {
	body.slug-publication h2.publication-title {
		font-size: 1.25em;
	}
}
@media not all and (min-width: 600px) {
	body.slug-publication h2.publication-title {
		font-size: 1.125em;
		-ms-flex-item-align: center;
		    align-self: center;
	}
}
body.slug-publication .publication-detail {
	grid-column: 2/3;
	grid-row: 2/3;
}
@media not all and (min-width: 600px) {
	body.slug-publication .publication-detail {
		grid-column: 1/3;
	}
}
body.slug-publication .publication-detail .ark-block-dl__div {
	border-top: unset;
	border-bottom: unset;
	padding: 0;
}
body.slug-publication .publication-detail .ark-block-dl__div:not(:first-child) {
	margin-top: 0;
}
body.slug-publication .publication-detail .ark-block-dl__dt {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 5.5em;
	        flex: 0 0 5.5em;
	font-weight: 400;
	margin-right: 0.5em;
}
body.slug-publication .publication-detail .ark-block-dl__dd {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	position: relative;
}
body.slug-publication .publication-detail .ark-block-dl__dd::before {
	content: ":";
	position: absolute;
	left: -0.75em;
}
body.slug-publication .publication-body {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
body.slug-publication .publication-body > :not(:first-child) {
	margin-top: 1rem;
}
body.slug-publication .publication-summary:has(+ .external-links) {
	margin-bottom: 1rem;
}
body.slug-publication .external-links {
	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;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	gap: 0 1.5rem;
	padding-left: 0;
	margin-top: auto !important;
}
body.slug-publication .external-links .external-link {
	margin: 0;
}
body.slug-publication .external-links .external-link a .arkb-inline-icon:first-child {
	-webkit-transform: scale(1.25);
	        transform: scale(1.25);
	margin-right: 0.25em;
}
body.slug-publication .external-links .external-link a .arkb-inline-icon:last-child {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}

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

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

/* 個人情報保護方針 */
body.slug-privacy-policy .p-breadcrumb {
	background-color: #f1f7fb;
}
body.slug-privacy-policy section.privacy-policy {
	--ark-width--article: 1100px;
}
@media (min-width: 600px) {
	body.slug-privacy-policy section.privacy-policy .ark-block-section__color {
		background-color: #f1f7fb !important;
	}
}
body.slug-privacy-policy .privacy-policy-container {
	background-color: #fff;
	padding: 4rem;
}
@media (min-width: 600px) {
	body.slug-privacy-policy .privacy-policy-container {
		-webkit-box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
		        box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.05);
		border-radius: 8px;
	}
}
@media not all and (min-width: 1000px) {
	body.slug-privacy-policy .privacy-policy-container {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	body.slug-privacy-policy .privacy-policy-container {
		padding: unset;
	}
}
body.slug-privacy-policy .privacy-policy-container > :not(:first-child) {
	margin-top: 1.5em;
}
body.slug-privacy-policy h2.privacy-policy-title {
	color: #135072;
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.5rem;
}
@media (min-width: 600px) {
	body.slug-privacy-policy h2.privacy-policy-title {
		font-size: 1.5em;
	}
}
body.slug-privacy-policy .privacy-policy-dl .ark-block-dl__div {
	border-top: none;
	border-bottom: none;
	padding: 0;
}
body.slug-privacy-policy .privacy-policy-dl .ark-block-dl__div:not(:first-child) {
	margin-top: 0.25rem;
}
body.slug-privacy-policy .privacy-policy-dl .ark-block-dl__dt {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 4.5em;
	        flex: 0 0 4.5em;
	font-weight: 400;
}
body.slug-privacy-policy .privacy-policy-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.post-type-archive-members:not(.search) .l-content__body {
		margin: 0 auto 3rem;
	}
}

.membersArchive > *:not(:first-child) {
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	.membersArchive > *:not(:first-child) {
		margin-top: 2rem;
	}
}
.membersArchive .membersHead > *:not(:first-child) {
	margin-top: 2rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .membersHead > *:not(:first-child) {
		margin-top: 0.5rem;
	}
}
@media not all and (min-width: 600px) {
	.membersArchive .membersHead + * {
		margin-top: 1rem;
	}
}
.membersArchive .membersControls {
	background-color: #f1f7fb;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 1.5rem;
	padding: 3rem;
}
@media not all and (min-width: 1000px) {
	.membersArchive .membersControls {
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	.membersArchive .membersControls {
		gap: 1rem;
		padding: 2rem min(48px, 4vw);
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
.membersArchive .membersSelect {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 1rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .membersSelect {
		gap: 4px;
	}
}
.membersArchive .membersSelect .wp-block-categories-dropdown {
	width: calc(25% - 0.75rem);
}
@media not all and (min-width: 1000px) {
	.membersArchive .membersSelect .wp-block-categories-dropdown {
		width: calc(50% - 0.5rem);
	}
}
@media not all and (min-width: 600px) {
	.membersArchive .membersSelect .wp-block-categories-dropdown {
		width: calc(50% - 2px);
	}
}
.membersArchive .membersSelect .wp-block-categories-dropdown select {
	padding: 8px 24px 8px 16px;
}
.membersArchive .membersNav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	gap: 2rem;
	padding: 1rem 0;
	overflow-x: auto;
}
@media not all and (min-width: 600px) {
	.membersArchive .membersNav {
		gap: 1rem;
	}
}
.membersArchive .membersNav-button {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 0px;
	        flex: 1 0 0;
	position: relative;
}
.membersArchive .membersNav-link {
	color: #2085be;
	background-color: #fff;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	border-bottom: 1px solid #ccc;
	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;
	width: 100%;
	height: 100%;
	padding: 0.75em 0 0.75em 0.5em;
	-webkit-transition: border-color 0.25s, -webkit-filter 0.25s;
	transition: border-color 0.25s, -webkit-filter 0.25s;
	transition: filter 0.25s, border-color 0.25s;
	transition: filter 0.25s, border-color 0.25s, -webkit-filter 0.25s;
}
.membersArchive .membersNav-link:hover {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
	border-color: #2085be;
}
.membersArchive .membersNav-link:hover .icon {
	fill: #fff;
	background-color: #2085be;
}
.membersArchive .membersNav-link .label {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	font-size: 1.25rem;
	text-align: left;
	white-space: nowrap;
	margin-right: 1.5rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .membersNav-link .label {
		font-size: 1rem;
	}
}
.membersArchive .membersNav-link .icon {
	fill: #2085be;
	background-color: #deedf6;
	border-radius: 9999px;
	padding: 4px;
	-webkit-transform: scale(1.5) translateX(-0.5em);
	        transform: scale(1.5) translateX(-0.5em);
	-webkit-transition: fill 0.25s, background-color 0.25s;
	transition: fill 0.25s, background-color 0.25s;
}
.membersArchive .membersSection > *:not(:first-child) {
	margin-top: 2rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .membersSection > *:not(:first-child) {
		margin-top: 1.5rem;
	}
}
.membersArchive .membersSubSection > *:not(:first-child) {
	margin-top: 1.5rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .membersSubSection > *:not(:first-child) {
		margin-top: 1rem;
	}
}
.membersArchive h2.membersHeading {
	color: #135072;
	background-color: #f1f7fb;
	border-width: 4px 0 4px 0;
	border-style: solid;
	border-color: #e9f3f9;
	padding: 0.25em 0.5em;
}
.membersArchive h3.membersSubHeading {
	color: #135072;
	border-bottom: 1px solid #ccc;
	padding: 0.25em 0.6em;
	position: relative;
}
.membersArchive h3.membersSubHeading:before {
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2085be), color-stop(50%, #1d65b1));
	background-image: linear-gradient(180deg, #2085be 50%, #1d65b1 50%);
	width: 5px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	.membersArchive h3.membersSubHeading:before {
		width: 4px;
	}
}
.membersArchive .membersList-items {
	--ark-list-padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 1rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .membersList-items {
		gap: 0;
	}
}
.membersArchive .membersList-item {
	width: calc(25% - 0.75rem);
	border-radius: 10px;
	-webkit-box-shadow: 0 0 0 1px #ddd;
	        box-shadow: 0 0 0 1px #ddd;
	overflow: hidden;
	-webkit-transition: -webkit-box-shadow 0.25s, -webkit-filter 0.25s;
	transition: -webkit-box-shadow 0.25s, -webkit-filter 0.25s;
	transition: box-shadow 0.25s, filter 0.25s;
	transition: box-shadow 0.25s, filter 0.25s, -webkit-box-shadow 0.25s, -webkit-filter 0.25s;
}
@media not all and (min-width: 1000px) {
	.membersArchive .membersList-item {
		width: calc(33.33% - 0.6666666667rem);
	}
}
@media not all and (min-width: 800px) {
	.membersArchive .membersList-item {
		width: calc(50% - 0.5rem);
	}
}
@media not all and (min-width: 600px) {
	.membersArchive .membersList-item {
		width: 50%;
		border-radius: 0;
	}
}
.membersArchive .membersList-item:hover {
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	-webkit-filter: brightness(1.05);
	        filter: brightness(1.05);
}
.membersArchive .membersList-item:hover .member-image img {
	-webkit-transform: scale(1.1);
	        transform: scale(1.1);
}
.membersArchive .membersList-item:hover .more-text .arkb-inline-icon {
	color: #fff;
	background-color: #2085be;
}
.membersArchive .member-link {
	color: inherit;
	text-decoration: none;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.membersArchive .member-image {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	aspect-ratio: 4/3;
	overflow: hidden;
}
.membersArchive .member-image img {
	vertical-align: bottom;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: top;
	   object-position: top;
	-webkit-transition: -webkit-transform 0.25s;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
}
.membersArchive .member-info {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	background-color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 1rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .member-info {
		padding: 0.75rem;
	}
}
.membersArchive .member-info > *:not(:first-child) {
	margin-top: 0.75rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .member-info > *:not(:first-child) {
		margin-top: 0.5rem;
	}
}
.membersArchive .member-name-group {
	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: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	gap: 0 0.75rem;
}
.membersArchive h4.member-name {
	color: #135072;
	font-size: 1.375rem;
	line-height: 1.2;
}
@media not all and (min-width: 600px) {
	.membersArchive h4.member-name {
		font-size: 1.25rem;
	}
}
.membersArchive .member-name-en {
	color: #2085be;
	font-size: 0.875rem;
}
.membersArchive .litigator {
	font-size: 0.875rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .litigator {
		font-size: 12px;
	}
}
.membersArchive .expertise-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.5rem;
}
.membersArchive .expertise-group:has(.expertise-list._main > li.expertise-tag._practice:only-child) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.membersArchive .expertise-list {
	--ark-list-padding: 0;
	list-style: none;
	font-size: 0.75rem;
	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.5rem;
}
@media not all and (min-width: 600px) {
	.membersArchive .expertise-list {
		font-size: 11px;
	}
}
.membersArchive .expertise-tag {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0;
}
.membersArchive .expertise-tag._practice {
	color: #fff;
	background-color: #2085be;
	border: 1px solid #2085be;
	border-radius: 4px;
	text-decoration: none;
	padding: 2px 4px;
}
.membersArchive .expertise-tag._technical {
	color: #2085be;
	background-color: #fff;
	border: 1px solid #2085be;
	border-radius: 4px;
	text-decoration: none;
	padding: 2px 4px;
}
.membersArchive .more-text {
	color: #90c2df;
	font-size: 0.875rem;
	text-align: right;
	padding-top: 4px;
	margin-top: auto !important;
	-webkit-transform: translate(6px, 6px);
	        transform: translate(6px, 6px);
}
@media not all and (min-width: 600px) {
	.membersArchive .more-text {
		-webkit-transform: translate(4px, 4px);
		        transform: translate(4px, 4px);
	}
}
.membersArchive .more-text .arkb-inline-icon {
	color: #2085be;
	background-color: #e9f3f9;
	font-size: 0.75rem;
	border-radius: 9999px;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	margin-left: 0.25rem;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
.membersArchive .more-text .arkb-inline-icon::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.membersArchive .engineersList-items {
	--ark-list-padding: 0;
	list-style: none;
	border-top: 1px solid #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.membersArchive .engineersList-item {
	width: 50%;
	border-bottom: 1px solid #ddd;
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	position: relative;
}
@media not all and (min-width: 1000px) {
	.membersArchive .engineersList-item {
		width: 100%;
	}
}
@media not all and (min-width: 600px) {
	.membersArchive .engineersList-item {
		padding: 1rem 0;
	}
}
@media (min-width: 1000px) {
	.membersArchive .engineersList-item:nth-child(odd) {
		padding-right: 1.5rem;
	}
	.membersArchive .engineersList-item:nth-child(odd)::after {
		content: "";
		background-color: #ddd;
		width: 1px;
		height: calc(100% - 3rem);
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
}
@media (min-width: 1000px) {
	.membersArchive .engineersList-item:nth-child(even) {
		padding-left: 1.5rem;
	}
}
.membersArchive .engineer-image {
	width: 100px;
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 0.5rem;
}
@media not all and (min-width: 1000px) {
	.membersArchive .engineer-image {
		width: 80px;
	}
}
@media not all and (min-width: 600px) {
	.membersArchive .engineer-image {
		width: 64px;
		margin-right: 1rem;
	}
}
.membersArchive .engineer-image img {
	border-radius: 9999px;
}
.membersArchive .engineer-text {
	line-height: var(--ark-line_height, 1.8);
}
:root:lang(ja) .membersArchive .engineer-text {
	text-align: justify;
	line-break: strict;
	word-break: normal;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

/* 弁理士等紹介 | メンバーページ */
body.single-members .l-content__body {
	margin: 0 auto 3rem;
}

@media (min-width: 1000px) {
	.memberHead {
		background-image: linear-gradient(135deg, #fff, #e9f3f9);
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
.memberHead .memberHead-columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (min-width: 1000px) {
	.memberHead .memberHead-columns {
		max-width: calc(var(--ark-width--article, 1000px) + var(--ark-padding--container, 0px) * 2);
		padding-left: var(--ark-padding--container, 0);
		padding-right: var(--ark-padding--container, 0);
		margin-left: auto;
		margin-right: auto;
	}
}
@media not all and (min-width: 1000px) {
	.memberHead .memberHead-columns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
}
.memberHead .memberHead-column {
	width: 100%;
}
@media (min-width: 1000px) {
	.memberHead .memberHead-column {
		width: 50%;
	}
}
.memberHead .memberHead-column.text-col {
	position: relative;
	z-index: 1;
}
@media not all and (min-width: 1000px) {
	.memberHead .memberHead-column.text-col {
		margin-top: -2rem;
	}
}
@media not all and (min-width: 1000px) {
	.memberHead .memberHead-column.image-col {
		background-image: linear-gradient(135deg, #fff, #e9f3f9);
		width: 100vw;
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}
.memberHead .member-summary {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	padding: 2.5rem;
}
@media not all and (min-width: 1000px) {
	.memberHead .member-summary {
		-webkit-box-shadow: var(--box-shadow);
		        box-shadow: var(--box-shadow);
		padding: 2rem;
	}
}
@media not all and (min-width: 600px) {
	.memberHead .member-summary {
		padding: 1.5rem;
	}
}
.memberHead .member-badges {
	--ark-list-padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 0.75rem;
}
@media not all and (min-width: 600px) {
	.memberHead .member-badges {
		font-size: 0.75rem;
	}
}
.memberHead .member-badges .badge {
	margin: 0;
}
.memberHead .member-badges .badge > a {
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.memberHead .member-badges .badge > a:hover {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.memberHead .member-badges .badge._license > a {
	color: #fff;
	background-color: #2085be;
	border: 1px solid #2085be;
	border-radius: 4px;
	text-decoration: none;
	padding: 3px 6px;
}
.memberHead .member-badges .badge._position > a {
	color: #2085be;
	background-color: #fff;
	border: 1px solid #2085be;
	border-radius: 4px;
	text-decoration: none;
	padding: 3px 6px;
}
.memberHead .member-name-group {
	border-bottom: 4px double #ddd;
	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: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	gap: 0.75rem;
	padding-bottom: 0.5rem;
	margin-top: 0.75rem;
}
.memberHead h1.member-name {
	color: #135072;
}
@media not all and (min-width: 600px) {
	.memberHead h1.member-name {
		font-size: 1.5em;
	}
}
.memberHead .member-name-en {
	color: #2085be;
	font-size: 1.25rem;
}
@media not all and (min-width: 600px) {
	.memberHead .member-name-en {
		font-size: 1rem;
	}
}
.memberHead .member-facts {
	margin-top: 1.5rem;
}
@media not all and (min-width: 600px) {
	.memberHead .member-facts {
		margin-top: 1rem;
	}
}
.memberHead .member-facts > *:not(:first-child) {
	margin-top: 0.75rem;
}
.memberHead .member-facts-text .icon {
	color: #2085be;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	vertical-align: middle;
	-webkit-transform: translateY(-0.1em);
	        transform: translateY(-0.1em);
}
.memberHead .member-facts-dl {
	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;
}
@media not all and (min-width: 600px) {
	.memberHead .member-facts-dl._expertise .member-facts-content {
		padding-top: 0.25em;
	}
}
.memberHead .member-facts-title {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
}
.memberHead .member-facts-title .icon {
	color: #2085be;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	vertical-align: middle;
	-webkit-transform: translateY(-0.1em);
	        transform: translateY(-0.1em);
}
.memberHead .member-facts-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-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 0.5rem;
}
.memberHead .member-facts-content:has(.expertise-list._main > li.expertise-tag._practice:only-child) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.memberHead .language-list {
	--ark-list-padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 0.25rem;
}
.memberHead .language-tag {
	margin: 0;
}
.memberHead .language-tag a {
	color: inherit;
}
.memberHead .language-tag a:not(:hover) {
	text-decoration: none;
}
.memberHead .language-tag:not(:first-child)::before {
	content: "/";
}
.memberHead .expertise-list {
	--ark-list-padding: 0;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 0.5rem;
}
@media not all and (min-width: 600px) {
	.memberHead .expertise-list {
		font-size: 0.75rem;
	}
}
.memberHead .expertise-tag {
	margin: 0;
}
.memberHead .expertise-tag > a {
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.memberHead .expertise-tag > a:hover {
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.memberHead .expertise-tag._practice > a {
	color: #fff;
	background-color: #2085be;
	border: 1px solid #2085be;
	border-radius: 4px;
	text-decoration: none;
	padding: 3px 6px;
}
.memberHead .expertise-tag._technical > a {
	color: #2085be;
	background-color: #fff;
	border: 1px solid #2085be;
	border-radius: 4px;
	text-decoration: none;
	padding: 3px 6px;
}
@media (min-width: 1000px) {
	.memberHead .member-image {
		margin-left: -100px;
		margin-right: -100px;
	}
}
@media not all and (min-width: 1000px) {
	.memberHead .member-image {
		text-align: center;
	}
}
.memberHead .member-image img {
	aspect-ratio: 4/3;
	-o-object-fit: cover;
	   object-fit: cover;
	vertical-align: bottom;
	-webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, black), color-stop(75%, black), to(transparent));
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, black 25%, black 75%, transparent 100%);
	        mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, black), color-stop(75%, black), to(transparent));
	        mask-image: linear-gradient(90deg, transparent 0%, black 25%, black 75%, transparent 100%);
}
@media (min-width: 1000px) {
	.memberHead .member-image img {
		width: 100%;
		-o-object-position: 50% 10%;
		   object-position: 50% 10%;
	}
}
@media not all and (min-width: 1000px) {
	.memberHead .member-image img {
		-o-object-position: top;
		   object-position: top;
	}
}
@media not all and (min-width: 600px) {
	.memberHead .member-image img {
		-webkit-mask-image: unset;
		        mask-image: unset;
	}
}

.memberBody {
	margin-top: 3rem;
}
@media not all and (min-width: 1000px) {
	.memberBody {
		margin-top: 2rem;
	}
}
.memberBody .memberBody-container {
	border: 8px solid #f1f7fb;
	padding: 2rem 3rem;
}
@media not all and (min-width: 1000px) {
	.memberBody .memberBody-container {
		padding: 1.5rem 2rem;
	}
}
@media not all and (min-width: 600px) {
	.memberBody .memberBody-container {
		border-width: 6px;
		padding: 1rem;
	}
}
.memberBody .memberBody-container > *:not(:first-child) {
	margin-top: 1rem;
}
.memberBody .memberBody-container + * {
	margin-top: 3rem;
}
@media not all and (min-width: 1000px) {
	.memberBody .memberBody-container + * {
		margin-top: 2rem;
	}
}
.memberBody .memberBody-columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
}
@media (min-width: 1000px) {
	.memberBody .memberBody-columns {
		border-top: 1px solid #ccc;
	}
	.memberBody .memberBody-columns:last-child {
		border-bottom: 1px solid #ccc;
	}
}
@media not all and (min-width: 1000px) {
	.memberBody .memberBody-columns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.memberBody .memberBody-column.heading-col {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 25%;
	        flex: 0 0 25%;
	padding: 1.5rem 1.5rem 1.5rem 0;
	position: relative;
}
@media (min-width: 1000px) {
	.memberBody .memberBody-column.heading-col::after {
		content: "";
		background-color: #ccc;
		width: 1px;
		height: calc(100% - 3rem);
		position: absolute;
		top: 50%;
		right: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
}
@media not all and (min-width: 1000px) {
	.memberBody .memberBody-column.heading-col {
		padding: 0;
	}
}
.memberBody .memberBody-column.content-col {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	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;
	padding: 1.5rem 0 1.5rem 1.5rem;
}
@media not all and (min-width: 1000px) {
	.memberBody .memberBody-column.content-col {
		padding: 1rem 0;
	}
}
.memberBody .memberBody-column.content-col > *:not(:first-child) {
	margin-top: 2rem;
}
.memberBody h2.memberBody-title {
	color: #135072;
	text-indent: -1.675em;
	padding-left: 1.675em;
}
@media not all and (min-width: 1000px) {
	.memberBody h2.memberBody-title:not(._message) {
		background-color: #f1f7fb;
		border-width: 4px 0 4px 0;
		border-style: solid;
		border-color: #e9f3f9;
		padding: 0.25em 0.5em 0.25em 2.175em;
	}
}
.memberBody h2.memberBody-title .icon {
	color: #2085be;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	vertical-align: middle;
}
@media not all and (min-width: 600px) {
	.memberBody h2.memberBody-title .icon svg {
		width: 28px;
		height: 28px;
	}
}
.memberBody h2.memberBody-title .label {
	vertical-align: middle;
}
.memberBody .message-text {
	--line-height: 2.5;
	line-height: var(--line-height);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd)) top/100% 1px no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd)) bottom/100% 1px no-repeat, repeating-linear-gradient(to bottom, transparent 0, transparent calc(1em * var(--line-height) - 1px), #ddd calc(1em * var(--line-height) - 1px), #ddd calc(1em * var(--line-height)));
	background: linear-gradient(#ddd 0 0) top/100% 1px no-repeat, linear-gradient(#ddd 0 0) bottom/100% 1px no-repeat, repeating-linear-gradient(to bottom, transparent 0, transparent calc(1em * var(--line-height) - 1px), #ddd calc(1em * var(--line-height) - 1px), #ddd calc(1em * var(--line-height)));
	background-clip: content-box;
	background-origin: content-box;
}
@media (min-width: 1000px) {
	.memberBody .message-text {
		font-size: 1.125rem;
	}
}
.memberBody .careers {
	margin: -0.5em 0;
}
.memberBody .careers .career {
	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: 1rem;
	margin: 0.5em 0;
}
.memberBody .careers .career-year {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 7em;
	        flex: 0 0 7em;
	color: #135072;
	font-weight: 700;
}
@media not all and (min-width: 600px) {
	.memberBody .careers .career-year {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 4em;
		        flex: 0 0 4em;
	}
}
.memberBody .publications {
	margin: -0.5em 0;
}
.memberBody .publications .publication {
	margin: 0.5em 0;
}
.memberBody .publications .publication .ext-icon {
	margin-left: 0.25em;
}
.memberBody .medias {
	margin: -0.5em 0;
}
.memberBody .medias .media {
	margin: 0.5em 0;
}
.memberBody .activities {
	margin: -0.5em 0;
}
.memberBody .activities .activity {
	margin: 0.5em 0;
}
.memberBody .member-orgs {
	margin: -0.5em 0;
}
.memberBody .member-orgs .organization {
	margin: 0.5em 0;
}
.memberBody .member-orgs .organization .ext-icon {
	margin-left: 0.25em;
}
.memberBody .qualifications {
	margin: -0.5em 0;
}
.memberBody .qualifications .qualification {
	margin: 0.5em 0;
}
.memberBody .practice-areas {
	margin: -0.5em 0;
}
.memberBody .practice-areas .area {
	margin: 0.5em 0;
}
.memberBody .self-intros-container > *:not(:first-child) {
	margin-top: 1rem;
}
.memberBody h3.self-intros-title {
	color: #135072;
	border-bottom: 1px solid #ccc;
	padding: 0.25em 0.6em;
	position: relative;
}
.memberBody h3.self-intros-title:before {
	content: "";
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2085be), color-stop(50%, #1d65b1));
	background-image: linear-gradient(180deg, #2085be 50%, #1d65b1 50%);
	width: 5px;
	height: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
@media not all and (min-width: 600px) {
	.memberBody h3.self-intros-title:before {
		width: 4px;
	}
}
.memberBody .self-intros-image img {
	vertical-align: bottom;
}

.memberFoot {
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	.memberFoot {
		margin-top: 2rem;
	}
}

/* お知らせアーカイブページ */
body.category-topics .p-postList .p-postList__thumb {
	display: none;
}
body.category-topics .p-postList .p-postList__body {
	padding-left: 0;
}

/* 検索結果ページ */
body.search.no-post-type-query .p-postList .p-postList__thumb {
	display: none;
}
body.search.no-post-type-query .p-postList .p-postList__body {
	padding-left: 0;
}
body.search .p-archive__title .c-pageTitle__main {
	text-indent: -1.25em;
	padding-left: 1.25em;
}
body.search .p-archive__title .c-pageTitle__main::before {
	content: "";
	background-color: currentColor;
	display: inline-block;
	width: 1em;
	height: 1em;
	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" fill="currentColor"><path d="M37.8 34.8l-11.9-11.2c1.8-2.3 2.9-5.1 2.9-8.2 0-7.4-6-13.4-13.4-13.4s-13.4 6-13.4 13.4 6 13.4 13.4 13.4c3.1 0 5.9-1.1 8.2-2.8l11.2 11.9c0.2 0.2 1.3 0.2 1.5 0l1.5-1.5c0.3-0.3 0.3-1.4 0-1.6zM15.4 25.5c-5.6 0-10.2-4.5-10.2-10.1s4.6-10.2 10.2-10.2 10.2 4.6 10.2 10.2-4.6 10.1-10.2 10.1z"/></svg>');
	        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40" fill="currentColor"><path d="M37.8 34.8l-11.9-11.2c1.8-2.3 2.9-5.1 2.9-8.2 0-7.4-6-13.4-13.4-13.4s-13.4 6-13.4 13.4 6 13.4 13.4 13.4c3.1 0 5.9-1.1 8.2-2.8l11.2 11.9c0.2 0.2 1.3 0.2 1.5 0l1.5-1.5c0.3-0.3 0.3-1.4 0-1.6zM15.4 25.5c-5.6 0-10.2-4.5-10.2-10.1s4.6-10.2 10.2-10.2 10.2 4.6 10.2 10.2-4.6 10.1-10.2 10.1z"/></svg>');
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	vertical-align: middle;
	-webkit-transform: translateY(-0.1em);
	        transform: translateY(-0.1em);
}

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

/* 投稿ページ | ヘッダー */
.p-entry__head {
	border-bottom: 4px double #ddd;
	padding-bottom: 1rem;
}
.p-entry__head h1.c-pageTitle__main {
	color: #135072;
}
@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: #2085be;
	border-radius: 4px;
	padding: 3px 6px;
	margin-right: 0;
}
.p-entry__head .c-postTerms__item.-tag .c-postTerms__link {
	color: #2085be;
	background-color: #fff;
	border: 1px solid #2085be;
	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__head .c-postAuthor__figure {
	width: 2rem;
	height: 2rem;
}

/* 投稿ページ | アイキャッチ */
.p-entry__eyecatch .p-entry__thumb {
	border-radius: 10px;
	overflow: hidden;
}

/* 投稿ページ | コンテンツ */
.p-entry__content .toc-block {
	background-color: #f1f7fb;
	border-width: 0 8px 8px 8px;
	border-style: solid;
	border-color: #f1f7fb;
	border-radius: 10px;
	position: relative;
}
@media not all and (min-width: 600px) {
	.p-entry__content .toc-block {
		border-width: 0 6px 6px 6px;
	}
}
.p-entry__content .toc-block .toc-block__title {
	color: #135072;
	font-size: 1.25rem;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 0.75rem;
}
.p-entry__content .toc-block .toc-block__title::before {
	content: "";
	background-color: #2085be;
	display: inline-block;
	width: 1.25em;
	height: 1.25em;
	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M372.31-210v-60H820v60H372.31Zm0-240v-60H820v60H372.31Zm0-240v-60H820v60H372.31ZM206.54-173.46q-27.45 0-46.99-19.55Q140-212.55 140-240q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-452.55 140-480q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-692.55 140-720q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Z"/></svg>');
	        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M372.31-210v-60H820v60H372.31Zm0-240v-60H820v60H372.31Zm0-240v-60H820v60H372.31ZM206.54-173.46q-27.45 0-46.99-19.55Q140-212.55 140-240q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-452.55 140-480q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-692.55 140-720q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Z"/></svg>');
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
}
.p-entry__content .toc-block .toc-block__body {
	background-color: #fff;
	padding: 0.5rem 0.75rem;
}
.p-entry__content .toc-block .toc-level._level-2 {
	list-style: decimal;
	list-style: decimal-leading-zero;
	padding-left: 2em;
}
.p-entry__content .toc-block .toc-level._level-3 {
	list-style: disc;
	padding-left: 0.75em;
	position: relative;
}
.p-entry__content .toc-block .toc-level._level-3::before {
	content: "";
	background-color: #2085be;
	width: 1px;
	height: 100%;
	position: absolute;
	left: -1.2em;
	opacity: 0.5;
}
.p-entry__content .toc-block .toc-item {
	margin: 0.5em 0;
}
.p-entry__content .toc-block .toc-item::marker {
	color: #2085be;
}
.p-entry__content .toc-block .toc-item a {
	color: inherit;
}
.p-entry__content .toc-block .toc-item a:not(:hover) {
	text-decoration: none;
}
.p-entry__content .toc-block .toc-accordion__btn {
	color: #2085be;
	background: #fff;
	font-size: 0.875rem;
	border: none;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	padding: 0 0 0.75rem;
}
.p-entry__content .toc-block .toc-accordion__btn[aria-expanded=false] {
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, #fff));
	background: linear-gradient(180deg, transparent 0%, #fff 70%);
	height: 5rem;
	position: absolute;
	bottom: 0;
}

/* 投稿ページ | シェアボタン */
.c-shareBtns {
	margin: 3rem 0 !important;
}
@media not all and (min-width: 600px) {
	.c-shareBtns {
		margin: 2rem 0 !important;
	}
}
.c-shareBtns .c-shareBtns__list {
	--ark-color--border: #ccc;
}
.c-shareBtns .c-shareBtns__btn {
	border-radius: 9999px;
}

/* 投稿ページ | フッター */
.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: #2085be;
	background-color: #fff;
	border: 1px solid #2085be;
	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;
}
@media not all and (min-width: 600px) {
	.c-pnNav {
		gap: 0.5rem;
	}
}
.c-pnNav .c-pnNav__item {
	font-size: 0.9rem;
	-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.8rem;
	}
}
.c-pnNav .c-pnNav__item .c-pnNav__link {
	color: #2085be;
	background-color: #fff;
	border: 1px solid #2085be;
	border-radius: 9999px;
	-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:not(.blank):hover {
	color: #fff;
	background-color: #2085be;
}
.c-pnNav .c-pnNav__item .c-pnNav__link:hover {
	opacity: unset;
}
.c-pnNav .c-pnNav__item .c-pnNav__link.blank {
	color: #aaa;
	background-color: #f7f7f7;
	border-color: #ccc;
}
.c-pnNav .c-pnNav__item .c-pnNav__link.blank .c-pnNav__svg {
	fill: #bbb;
	background-color: #eee;
}
.c-pnNav .c-pnNav__item .c-pnNav__svg {
	fill: #2085be;
	background-color: #e9f3f9;
	width: 1.5em;
	height: 1.5em;
	border-radius: 9999px;
	padding: 6px;
	position: inherit;
	top: unset;
	right: unset;
	-webkit-transform: translateY(-0.05em);
	        transform: translateY(-0.05em);
}
.c-pnNav .c-pnNav__item.-prev .c-pnNav__link {
	min-width: 145px;
	padding: 0.75em 2.5em 0.75em 1.25em;
}
@media not all and (min-width: 600px) {
	.c-pnNav .c-pnNav__item.-prev .c-pnNav__link {
		min-width: 113px;
		padding: 0.75em 1em;
	}
}
@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.-next .c-pnNav__link {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	min-width: 145px;
	padding: 0.75em 1.25em 0.75em 2.5em;
}
@media not all and (min-width: 600px) {
	.c-pnNav .c-pnNav__item.-next .c-pnNav__link {
		min-width: 113px;
		padding: 0.75em 1em;
	}
}
.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;
}

/* 投稿ページ | ボトムセクション共通 */
.c-bottomSection {
	margin-top: 3rem;
}
@media not all and (min-width: 600px) {
	.c-bottomSection {
		margin-top: 2rem;
	}
}
.c-bottomSection h2.c-bottomSection__title {
	color: #135072;
	font-size: 1.375rem;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.375rem;
	margin-bottom: 0.75rem;
	position: relative;
}
@media not all and (min-width: 600px) {
	.c-bottomSection h2.c-bottomSection__title {
		font-size: 1.25rem;
	}
}
.c-bottomSection h2.c-bottomSection__title::after {
	-webkit-box-flex: 1;
	    -ms-flex: 1 0 0px;
	        flex: 1 0 0;
	content: "";
	background-color: #ccc;
	display: block;
	min-width: 2rem;
	height: 1px;
	margin-left: 0.5em;
}

/* 投稿ページ | この記事を書いた人 */
.p-entry__author h2.c-bottomSection__title::before {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	content: "";
	background-color: #2085be;
	display: inline-block;
	width: 1.25em;
	height: 1.25em;
	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M200-200v-560 173.23-20.92V-200Zm90-250h211q1.62-16.23 7.12-31.23 5.49-15 13.65-28.77H290v60Zm0 160h148.15q13.54-15.39 30.16-25.96 16.61-10.58 34.84-17.42-2.46-3.7-4.31-8-1.84-4.31-3.07-8.62H290v60Zm0-320h380v-60H290v60Zm-77.69 470Q182-140 161-161q-21-21-21-51.31v-535.38Q140-778 161-799q21-21 51.31-21h535.38Q778-820 799-799q21 21 21 51.31v217.23q-11.31-18.31-26.12-32.35-14.8-14.04-33.88-23.96v-160.92q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H212.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v535.38q0 4.62 3.85 8.46 3.84 3.85 8.46 3.85h188.92q-.61 3.69-.92 7.38-.31 3.7-.31 7.39V-140H212.31Zm465.38-200q-37.38 0-63.69-26.31-26.31-26.31-26.31-63.69 0-37.39 26.31-63.69Q640.31-520 677.69-520q37.39 0 63.69 26.31 26.31 26.3 26.31 63.69 0 37.38-26.31 63.69Q715.08-340 677.69-340Zm-190 200v-46q0-21.31 10.96-39.12 10.97-17.8 30.89-25.65 34.84-14.61 72.19-21.92 37.35-7.31 75.96-7.31 37.85 0 75.19 7.31 37.35 7.31 72.97 21.92 19.92 7.85 30.88 25.65 10.96 17.81 10.96 39.12v46h-380Z"/></svg>');
	        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M200-200v-560 173.23-20.92V-200Zm90-250h211q1.62-16.23 7.12-31.23 5.49-15 13.65-28.77H290v60Zm0 160h148.15q13.54-15.39 30.16-25.96 16.61-10.58 34.84-17.42-2.46-3.7-4.31-8-1.84-4.31-3.07-8.62H290v60Zm0-320h380v-60H290v60Zm-77.69 470Q182-140 161-161q-21-21-21-51.31v-535.38Q140-778 161-799q21-21 51.31-21h535.38Q778-820 799-799q21 21 21 51.31v217.23q-11.31-18.31-26.12-32.35-14.8-14.04-33.88-23.96v-160.92q0-4.62-3.85-8.46-3.84-3.85-8.46-3.85H212.31q-4.62 0-8.46 3.85-3.85 3.84-3.85 8.46v535.38q0 4.62 3.85 8.46 3.84 3.85 8.46 3.85h188.92q-.61 3.69-.92 7.38-.31 3.7-.31 7.39V-140H212.31Zm465.38-200q-37.38 0-63.69-26.31-26.31-26.31-26.31-63.69 0-37.39 26.31-63.69Q640.31-520 677.69-520q37.39 0 63.69 26.31 26.31 26.3 26.31 63.69 0 37.38-26.31 63.69Q715.08-340 677.69-340Zm-190 200v-46q0-21.31 10.96-39.12 10.97-17.8 30.89-25.65 34.84-14.61 72.19-21.92 37.35-7.31 75.96-7.31 37.85 0 75.19 7.31 37.35 7.31 72.97 21.92 19.92 7.85 30.88 25.65 10.96 17.81 10.96 39.12v46h-380Z"/></svg>');
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-transform: translateY(-0.05em);
	        transform: translateY(-0.05em);
}

.p-authorBox {
	background-color: #f1f7fb;
	padding: 1.5rem;
}
@media (min-width: 600px) {
	.p-authorBox {
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
.p-authorBox .p-authorBox__avatar img {
	width: 128px;
	height: 128px;
}
@media not all and (min-width: 1000px) {
	.p-authorBox .p-authorBox__avatar img {
		width: 96px;
		height: 96px;
	}
}
@media not all and (min-width: 600px) {
	.p-authorBox .p-authorBox__avatar img {
		width: 80px;
		height: 80px;
	}
}
.p-authorBox .p-authorBox__name-group {
	border-bottom: 4px double #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	padding-bottom: 0.5rem;
	gap: 0 1rem;
}
@media not all and (min-width: 600px) {
	.p-authorBox .p-authorBox__name-group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
.p-authorBox .p-authorBox__name {
	color: #135072;
	font-size: 1.375em;
	font-weight: 700;
}
@media not all and (min-width: 600px) {
	.p-authorBox .p-authorBox__name {
		font-size: 1.25em;
	}
}
.p-authorBox .p-authorBox__position {
	font-size: 0.875em;
	line-height: 1.8;
}
.p-authorBox .p-authorBox__footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	gap: 1rem;
}
@media not all and (min-width: 600px) {
	.p-authorBox .p-authorBox__footer {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.p-authorBox .p-authorBox__links {
	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.5rem;
}
.p-authorBox .p-authorBox__links .p-authorBox__iconList {
	margin-top: 0;
	margin-left: 0;
}
.p-authorBox .p-authorBox__links .p-authorBox__iconList svg {
	fill: #135072;
}
.p-authorBox .p-authorBox__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.5rem;
	margin-left: auto;
}
@media not all and (min-width: 600px) {
	.p-authorBox .p-authorBox__buttons {
		margin-right: auto;
	}
}
.p-authorBox .p-authorBox__buttons .p-authorBox__profilelink a,
.p-authorBox .p-authorBox__buttons .p-authorBox__archivelink a {
	color: #2085be;
	background-color: #fff;
	font-size: 0.8rem;
	text-align: center;
	text-decoration: none;
	border-radius: 9999px;
	-webkit-box-shadow: 0 0 0 1px currentColor;
	        box-shadow: 0 0 0 1px currentColor;
	display: block;
	letter-spacing: 1px;
	opacity: 1;
	white-space: nowrap;
	padding: 0.5rem 1rem;
	margin: 0 auto;
	-webkit-transition: color 0.25s, background-color 0.25s;
	transition: color 0.25s, background-color 0.25s;
}
.p-authorBox .p-authorBox__buttons .p-authorBox__profilelink a:hover,
.p-authorBox .p-authorBox__buttons .p-authorBox__archivelink a:hover {
	color: #fff;
	background-color: #2085be;
}
.p-authorBox .p-authorBox__buttons .p-authorBox__archivelink {
	margin-top: 0;
}

/* 投稿ページ | 関連記事 */
.p-entry__related h2.c-bottomSection__title::before {
	content: "";
	background-color: #2085be;
	display: inline-block;
	width: 1.25em;
	height: 1.25em;
	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M367.69-612.31v-60h344.62v60H367.69Zm0 115.39v-60h344.62v60H367.69ZM476.92-160H200h276.92Zm0 60H240q-41.92 0-70.96-29.04Q140-158.08 140-200v-115.38h120V-860h560v338.31q-15.39-.85-30.5 1.88-15.12 2.73-29.5 9.04V-800H320v484.62h226.92l-60 59.99H200V-200q0 17 11.5 28.5T240-160h236.92v60Zm87.7 0v-105.69l217.15-216.16q7.46-7.46 16.15-10.5 8.69-3.03 17.39-3.03 9.3 0 18.19 3.53 8.88 3.54 15.96 10.62l37 37.38q6.46 7.47 10 16.16Q900-359 900-350.31t-3.23 17.69q-3.23 9-10.31 16.46L670.31-100H564.62Zm287.69-250.31-37-37.38 37 37.38Zm-240 202.62h38l129.84-130.47-18.38-19-18.62-18.76-130.84 130.23v38Zm149.46-149.47-18.62-18.76 37 37.76-18.38-19Z"/></svg>');
	        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M367.69-612.31v-60h344.62v60H367.69Zm0 115.39v-60h344.62v60H367.69ZM476.92-160H200h276.92Zm0 60H240q-41.92 0-70.96-29.04Q140-158.08 140-200v-115.38h120V-860h560v338.31q-15.39-.85-30.5 1.88-15.12 2.73-29.5 9.04V-800H320v484.62h226.92l-60 59.99H200V-200q0 17 11.5 28.5T240-160h236.92v60Zm87.7 0v-105.69l217.15-216.16q7.46-7.46 16.15-10.5 8.69-3.03 17.39-3.03 9.3 0 18.19 3.53 8.88 3.54 15.96 10.62l37 37.38q6.46 7.47 10 16.16Q900-359 900-350.31t-3.23 17.69q-3.23 9-10.31 16.46L670.31-100H564.62Zm287.69-250.31-37-37.38 37 37.38Zm-240 202.62h38l129.84-130.47-18.38-19-18.62-18.76-130.84 130.23v38Zm149.46-149.47-18.62-18.76 37 37.76-18.38-19Z"/></svg>');
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-transform: translateY(-0.05em);
	        transform: translateY(-0.05em);
}
.p-entry__related .p-postList.-related.-type-card .p-postList__body {
	padding-top: 0.5rem;
}
.p-entry__related .p-postList.-related.-type-card .p-postList__item {
	-ms-flex-preferred-size: 25%;
	    flex-basis: 25%;
	width: 25%;
}
@media not all and (min-width: 600px) {
	.p-entry__related .p-postList.-related.-type-card .p-postList__item {
		-ms-flex-preferred-size: 50%;
		    flex-basis: 50%;
		width: 50%;
	}
}
.p-entry__related .p-postList.-related.-type-card .p-postList__meta {
	display: none;
}
.p-entry__related .p-postList.-related.-type-card .p-postList__title {
	font-size: 1rem;
}

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

.l-sidebar {
	font-size: 1rem;
}
.l-sidebar .sidebar-area + .sidebar-area {
	margin-top: 2rem;
}
.l-sidebar .sidebar-area.sticky {
	position: sticky;
	top: calc(var(--ark-offset--y) + 1.5rem);
}
@media not all and (min-width: 1000px) {
	.l-sidebar .sidebar-area.sticky {
		display: none;
	}
}
.l-sidebar .sidebar-container > :not(:first-child) {
	--ark-mt--inner: 0.5rem;
}
.l-sidebar .sidebar-container.cta {
	background-image: url(/wp-content/uploads/side-contact-bg.jpg);
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	border-radius: 8px;
	-webkit-box-shadow: var(--box-shadow);
	        box-shadow: var(--box-shadow);
	overflow: hidden;
}
.l-sidebar h2.sidebar-title {
	color: #135072;
	font-size: 1.25rem;
}
.l-sidebar h2.sidebar-title.cta {
	text-align: center;
	padding: 0.75rem 1rem;
	position: relative;
}
.l-sidebar h2.sidebar-title.cta::after {
	content: "";
	background-color: #90c2df;
	width: calc(100% - 2rem);
	position: absolute;
	height: 1px;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.l-sidebar h2.sidebar-title .arkb-inline-icon {
	color: #2085be;
	font-size: 1.125em;
	margin-right: 0.25rem;
}
.l-sidebar .sidebar-cta-columns {
	--arkb-clmn-w--pc: 100%;
	--arkb-clmn-w--tab: 50%;
	--arkb-clmn-w--mb: 100%;
	--arkb-gap--x: 1rem;
	--arkb-gap--y: 1.5rem;
	padding: 1.5rem 1rem;
	margin-top: 0;
}
.l-sidebar .tel-button .ark-block-button__link {
	background: transparent;
	padding: 0 0 0 1rem;
}
.l-sidebar .tel-button .ark-block-button__icon {
	font-size: 1rem;
	fill: #2085be;
	-webkit-transform: scale(1.5) translateX(-0.25em);
	        transform: scale(1.5) translateX(-0.25em);
}
@media (min-width: 600px) {
	.l-sidebar .tel-button .ark-block-button__icon {
		font-size: 0.9rem;
	}
}
.l-sidebar .tel-button .ark-block-button__text {
	color: #333;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.1;
	white-space: nowrap;
}
@media (min-width: 600px) {
	.l-sidebar .tel-button .ark-block-button__text {
		font-size: 1.75rem;
	}
}
.l-sidebar .tel-times {
	font-size: 0.875rem;
	line-height: 1;
	margin-top: 0.375rem;
}
.l-sidebar .mail-button {
	width: 100%;
	max-width: 260px;
}
.l-sidebar .mail-button .ark-block-button__link {
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
	width: 100%;
	padding: 0.875em 3em;
}
.l-sidebar .sidebar-menu-tab .arkb-tabList {
	border-width: 0 1px 0 1px;
	border-style: solid;
	border-color: #ddd;
}
.l-sidebar .sidebar-menu-tab .arkb-tabList__item .arkb-tabList__button {
	color: #999;
	background-color: #f3f3f3;
	font-size: 1rem;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.l-sidebar .sidebar-menu-tab .arkb-tabList__item .arkb-tabList__button[aria-selected=true] {
	color: #2085be;
	background-color: #fff;
	border-top: 2px solid #2085be;
	border-bottom: 1px solid #fff;
}
.l-sidebar .sidebar-menu-tab .arkb-tabList__item:not(:last-child) .arkb-tabList__button[aria-selected=true] {
	border-right: 1px solid #ddd;
}
.l-sidebar .sidebar-menu-tab .arkb-tabList__item:not(:first-child) .arkb-tabList__button[aria-selected=true] {
	border-left: 1px solid #ddd;
}
.l-sidebar .sidebar-menu-tab .arkb-tabBody {
	border-width: 0 1px 1px 1px;
	border-style: solid;
	border-color: #ddd;
	border-radius: 0 0 8px 8px;
	padding: 0;
	overflow: hidden;
}
.l-sidebar .sidebar-nav {
	--ark-list-padding: 0;
	list-style: none;
}
.l-sidebar .sidebar-nav .menu-item {
	margin: 0;
}
.l-sidebar .sidebar-nav .menu-item:not(:first-child) {
	border-top: 1px solid #ddd;
}
.l-sidebar .sidebar-nav .menu-item a {
	color: inherit;
	background-color: #fff;
	font-size: 1rem;
	text-decoration: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 0.75rem;
	-webkit-transition: background-color 0.25s;
	transition: background-color 0.25s;
}
.l-sidebar .sidebar-nav .menu-item a:hover {
	background-color: #f1f7fb;
}
.l-sidebar .sidebar-nav .menu-item .arkb-inline-icon:first-child {
	color: #2085be;
	font-size: 1.5em;
	line-height: 1;
	margin-right: 0.25rem;
}
.l-sidebar .sidebar-nav .menu-item .arkb-inline-icon:last-child {
	color: #2085be;
	background-color: #e9f3f9;
	font-size: 0.75rem;
	border-radius: 9999px;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	margin-left: auto;
}
.l-sidebar .sidebar-nav .menu-item .arkb-inline-icon:last-child::after {
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.l-sidebar .sidebar-categories {
	--ark-menulist_border: 1px solid #ddd;
	--ark-nav-padding--Y: 0.75rem;
	--ark-nav-padding--R: calc(var(--ark-submenu_btn_size) + 16px);
	--ark-nav-padding--L: 0.75rem;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
}
.l-sidebar .sidebar-categories a:hover {
	background-color: #f1f7fb;
}
.l-sidebar .sidebar-categories .children {
	--ark-nav-padding--L: 1.75rem;
}
.l-sidebar .sidebar-categories .children.is-opened {
	border-top: 1px solid #ddd;
}
.l-sidebar .sidebar-categories .children > .cat-item:not(:first-child) {
	border-top: 1px solid #ddd;
}
.l-sidebar .sidebar-categories .children > .cat-item a {
	position: relative;
}
.l-sidebar .sidebar-categories .children > .cat-item a::before {
	content: "";
	background-color: #ccc;
	width: 10px;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0.75em;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.l-sidebar .sidebar-categories .c-submenuToggleBtn::after {
	-webkit-box-shadow: unset;
	        box-shadow: unset;
}
.l-sidebar .sidebar-categories .c-submenuToggleBtn:hover {
	outline: unset;
}
.l-sidebar .sidebar-tag-cloud .tag-cloud-link {
	color: #2085be !important;
	background-color: #fff;
	border: 1px solid #2085be;
	border-radius: 4px;
	line-height: 1.5;
	padding: 3px 6px !important;
	margin: 0;
	-webkit-transition: -webkit-filter 0.25s;
	transition: -webkit-filter 0.25s;
	transition: filter 0.25s;
	transition: filter 0.25s, -webkit-filter 0.25s;
}
.l-sidebar .sidebar-tag-cloud .tag-cloud-link:hover {
	opacity: unset;
	-webkit-filter: brightness(1.1);
	        filter: brightness(1.1);
}
.l-sidebar .toc-block {
	background-color: #f1f7fb;
	border-width: 0 6px 6px 6px;
	border-style: solid;
	border-color: #f1f7fb;
	border-radius: 8px;
}
.l-sidebar .toc-block .toc-block__title {
	color: #135072;
	font-size: 1.25rem;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 0.25rem;
	padding: 0.375rem 0.5rem;
}
.l-sidebar .toc-block .toc-block__title::before {
	content: "";
	background-color: #2085be;
	display: inline-block;
	width: 1.125em;
	height: 1.125em;
	-webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M372.31-210v-60H820v60H372.31Zm0-240v-60H820v60H372.31Zm0-240v-60H820v60H372.31ZM206.54-173.46q-27.45 0-46.99-19.55Q140-212.55 140-240q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-452.55 140-480q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-692.55 140-720q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Z"/></svg>');
	        mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="currentColor"><path d="M372.31-210v-60H820v60H372.31Zm0-240v-60H820v60H372.31Zm0-240v-60H820v60H372.31ZM206.54-173.46q-27.45 0-46.99-19.55Q140-212.55 140-240q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-452.55 140-480q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Zm0-240q-27.45 0-46.99-19.55Q140-692.55 140-720q0-27.45 19.55-46.99 19.54-19.55 46.99-19.55 27.45 0 46.99 19.55 19.55 19.54 19.55 46.99 0 27.45-19.55 46.99-19.54 19.55-46.99 19.55Z"/></svg>');
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
}
.l-sidebar .toc-block .toc-block__body {
	background-color: #fff;
	max-height: calc(100vh - 530px);
	overflow-y: auto;
	padding: 0.25rem 0.5rem;
}
.l-sidebar .toc-block .toc-level._level-2 {
	list-style: decimal;
	list-style: decimal-leading-zero;
	padding-left: 2em;
}
.l-sidebar .toc-block .toc-item {
	margin: 0.5em 0;
}
.l-sidebar .toc-block .toc-item::marker {
	color: #2085be;
}
.l-sidebar .toc-block .toc-item a {
	color: inherit;
}
.l-sidebar .toc-block .toc-item a:not(:hover) {
	text-decoration: none;
}

/* フッター */
.l-footer {
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f7fb));
	background: linear-gradient(180deg, #fff, #f1f7fb);
	border-top: 1px solid #ddd;
}
.l-footer .footer-columns {
	--arkb-clmn-w--pc: 50%;
	--arkb-clmn-w--tab: 100%;
	--arkb-clmn-w--mb: 100%;
}
.l-footer .footer-logo {
	text-align: left;
}
@media not all and (min-width: 600px) {
	.l-footer .footer-logo img {
		width: 156px;
	}
}
.l-footer .footer-name {
	line-height: 1.8;
}
.l-footer .footer-name + * {
	margin-top: 0;
}
.l-footer .footer-address {
	line-height: 1.8;
}
.l-footer .footer-nav-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	gap: 0 1rem;
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav-container {
		gap: 0;
	}
}
.l-footer .footer-nav-container > * {
	margin-top: 0;
}
.l-footer .footer-nav {
	list-style: none;
	padding: 0;
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav {
		font-size: 0.8rem;
	}
}
.l-footer .footer-nav > li.recruit .arkb-inline-icon {
	-webkit-transform: scale(0.75);
	        transform: scale(0.75);
}
.l-footer .footer-nav > li a {
	color: #2085be;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
}
.l-footer .footer-nav > li a:not(:hover) {
	color: inherit;
	text-decoration: none;
}
.l-footer .footer-nav._01 {
	width: calc(33.33% - 0.5rem);
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav._01 {
		width: 33.33%;
	}
}
.l-footer .footer-nav._02 {
	width: calc(66.66% - 0.5rem);
	height: 100%;
	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 1rem;
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav._02 {
		width: 66.66%;
		gap: 0;
	}
}
.l-footer .footer-nav._02 > li {
	width: calc(50% - 0.5rem);
}
@media not all and (min-width: 600px) {
	.l-footer .footer-nav._02 > li {
		width: 50%;
	}
}
.l-footer .footer-nav__depth1 {
	list-style: none;
	padding: 0;
}
.l-footer .footer-nav__depth1 > li {
	position: relative;
	padding-left: 1em;
}
.l-footer .footer-nav__depth1 > li > a::before {
	content: "";
	background-color: #90c2df;
	width: 10px;
	height: 2px;
	position: absolute;
	top: 0.875em;
	left: 0;
}
.l-footer .l-footer__foot {
	padding-top: 0;
	padding-bottom: 0;
}
.l-footer .c-copyright {
	font-size: 0.875rem;
	border-top: 1px solid #ccc;
	padding-top: 1rem;
	padding-bottom: 1rem;
}

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

.sticky-cta-buttons {
	--arkb-gap--x: 0rem;
	--arkb-gap--y: 0rem;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}
.sticky-cta-buttons .ark-block-button .ark-block-button__link {
	border-radius: 0;
	width: 100%;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.2em;
	padding: 0.5em;
}
.sticky-cta-buttons .ark-block-button .ark-block-button__text {
	font-size: 12px;
}
@media not all and (min-width: 600px) {
	.sticky-cta-buttons .ark-block-button .ark-block-button__text {
		font-size: 10px;
	}
}
.sticky-cta-buttons .service-button,
.sticky-cta-buttons .feature-button,
.sticky-cta-buttons .members-button {
	width: 16.6666666667%;
}
.sticky-cta-buttons .service-button .ark-block-button__link,
.sticky-cta-buttons .feature-button .ark-block-button__link,
.sticky-cta-buttons .members-button .ark-block-button__link {
	background: transparent;
}
.sticky-cta-buttons .service-button .ark-block-button__text,
.sticky-cta-buttons .feature-button .ark-block-button__text,
.sticky-cta-buttons .members-button .ark-block-button__text {
	color: #333;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1px;
}
.sticky-cta-buttons .service-button .arkb-inline-icon,
.sticky-cta-buttons .feature-button .arkb-inline-icon,
.sticky-cta-buttons .members-button .arkb-inline-icon {
	color: #2085be;
	font-size: 1.5rem;
	line-height: 1;
}
.sticky-cta-buttons .feature-button::before,
.sticky-cta-buttons .members-button::before {
	content: "";
	background-color: #ddd;
	width: 1px;
	height: calc(100% - 1.5em);
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.sticky-cta-buttons .tel-button,
.sticky-cta-buttons .contact-button {
	width: 25%;
}
.sticky-cta-buttons .tel-button .ark-block-button__icon.-left,
.sticky-cta-buttons .contact-button .ark-block-button__icon.-left {
	-webkit-transform: unset;
	        transform: unset;
}
.sticky-cta-buttons .tel-button .ark-block-button__link {
	background: -webkit-gradient(linear, left top, left bottom, from(#2085be), to(#1d65b1));
	background: linear-gradient(180deg, #2085be, #1d65b1);
}
.sticky-cta-buttons .contact-button .ark-block-button__link {
	background: -webkit-gradient(linear, left top, left bottom, from(#ff991f), to(#ff511f));
	background: linear-gradient(180deg, #ff991f, #ff511f);
}

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