.grecaptcha-badge {
    visibility: hidden;
}

.mtauto{
	margin-top: auto;
}

/* ==================================================
   Post / Article Design
   投稿ページ専用
================================================== */


/* --------------------------------------------------
   Article Base
-------------------------------------------------- */

.single-post #post {
	color: #333;
	font-size: 1rem;
	line-height: 2;
}

.single-post .entry {
	padding: 0;
}

.single-post #post p {
	margin-bottom: 1.8em;
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0.015em;
}


/* --------------------------------------------------
   Article Title
-------------------------------------------------- */

.single-post .entrytitle {
	margin: 0 0 14px;
	padding: 0;
	color: var(--blackcolor);
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-align: left;
}


/* 公開日・更新日 */
.single-post .entry-date {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin: 12px 0 34px;
	color: #777;
	font-size: 0.82rem;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

.single-post .entry-date time {
	color: inherit;
}


/* ==================================================
   Headings
================================================== */


/* --------------------------------------------------
   H2
-------------------------------------------------- */

.single-post .entry h2 {
	position: relative;

	margin: 3.5em 0 1.35em;
	padding: 0.12em 0 0.12em 22px;

	background: none;
	background-color: transparent;

	border: 0;

	color: #222;

	font-size: clamp(1.65rem, 2.5vw, 2.2rem);
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.single-post .entry h2::before {
	content: "";
	position: absolute;
	top: 0.18em;
	bottom: 0.18em;
	left: 0;

	width: 4px;

	background: var(--maincolor);
}


/* --------------------------------------------------
   H3
-------------------------------------------------- */

.single-post .entry h3 {
	position: relative;

	margin: 2.8em 0 1.2em;
	padding: 0 0 12px;

	background: none;
	background-color: transparent;

	border: 0;
	border-bottom: 0;

	color: #222;

	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.single-post .entry h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;

	width: 42px;
	height: 2px;

	background: var(--maincolor);
}


/* --------------------------------------------------
   H4
-------------------------------------------------- */

.single-post .entry h4 {
	margin: 2.2em 0 1em;
	padding: 0;

	background: none;
	background-color: transparent;

	border: 0;
	border-left: 0;

	color: #222;

	font-size: 1.12rem;
	line-height: 1.65;
	font-weight: 600;
	letter-spacing: 0.01em;
}


/* ==================================================
   Lists
================================================== */


/* --------------------------------------------------
   Unordered List
-------------------------------------------------- */

.single-post .entry ul {
	margin: 1.5em 0 2em;
	padding: 0;

	list-style: none;

	color: #333;
	line-height: 1.8;
}

.single-post .entry ul > li {
	position: relative;

	margin: 0 0 0.8em;
	padding-left: 1.55em;
}

.single-post .entry ul > li::before {
	content: "";

	position: absolute;
	left: 0.25em;
	top: 0.72em;

	width: 6px;
	height: 6px;

	border-radius: 50%;
	background: var(--maincolor);
}


/* --------------------------------------------------
   Ordered List
-------------------------------------------------- */

.single-post .entry ol {
	margin: 1.5em 0 2em;
	padding: 0;

	list-style: none;
	counter-reset: kaze-counter;

	color: #333;
	line-height: 1.8;
}

.single-post .entry ol > li {
	position: relative;

	margin: 0 0 1em;
	padding-left: 3em;

	counter-increment: kaze-counter;
}

.single-post .entry ol > li::before {
	content: counter(kaze-counter, decimal-leading-zero);

	position: absolute;
	left: 0;
	top: 0.05em;

	color: var(--maincolor);

	font-size: 0.82rem;
	line-height: 1.8;
	font-weight: 600;
	letter-spacing: 0.06em;
}


/* --------------------------------------------------
   Nested Lists
-------------------------------------------------- */

.single-post .entry li > ul,
.single-post .entry li > ol {
	margin-top: 0.6em;
	margin-bottom: 0.6em;
}


/* ==================================================
   Table
================================================== */

.single-post .entry table {
	width: 100%;

	margin: 2em 0 2.5em;

	border: 0;
	border-collapse: collapse;
	border-spacing: 0;

	background: #fff;

	font-size: 0.94rem;
	line-height: 1.7;
}

.single-post .entry th,
.single-post .entry td {
	padding: 16px 18px;

	border: 0;
	border-bottom: 1px solid #e3e7ea;

	vertical-align: top;
	text-align: left;

	font-size: inherit;
}

.single-post .entry th {
	background: #f4f7f9;

	color: #222;
	font-weight: 600;
}

.single-post .entry tr:first-child th,
.single-post .entry tr:first-child td {
	border-top: 1px solid #e3e7ea;
}


/* 左列見出し型の表にも対応 */
.single-post .entry tbody th {
	width: 28%;
}


/* ==================================================
   Blockquote
================================================== */

.single-post .entry blockquote {
	margin: 2.2em 0;
	padding: 22px 26px;

	border: 0;
	border-left: 3px solid var(--maincolor);

	background: #f6f8fa;

	color: #444;

	font-size: 0.96rem;
	line-height: 1.9;
}

.single-post .entry blockquote p:last-child {
	margin-bottom: 0;
}


/* ==================================================
   Strong / Emphasis
================================================== */

.single-post .entry strong {
	color: #222;
	font-weight: 600;
}


/* ==================================================
   Links
================================================== */

.single-post .entry a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}


/* ==================================================
   Horizontal Rule
================================================== */

.single-post .entry hr {
	margin: 3em 0;

	border: 0;
	border-top: 1px solid #e3e7ea;
}


/* ==================================================
   Images
================================================== */

.single-post .entry img {
	max-width: 100%;
	height: auto;
}


/* ==================================================
   Responsive
================================================== */

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

	.single-post #post {
		font-size: 0.96rem;
		line-height: 1.95;
	}

	.single-post #post p {
		font-size: 0.96rem;
		line-height: 1.95;
	}


	/* Title */
	.single-post .entrytitle {
		margin-bottom: 12px;

		font-size: clamp(1.7rem, 7vw, 2.3rem);
		line-height: 1.5;
	}


	/* Date */
	.single-post .entry-date {
		gap: 4px 16px;

		margin: 10px 0 28px;

		font-size: 0.78rem;
	}


	/* H2 */
	.single-post .entry h2 {
		margin: 3em 0 1.25em;
		padding-left: 16px;

		font-size: clamp(1.45rem, 6vw, 1.9rem);
	}

	.single-post .entry h2::before {
		width: 3px;
	}


	/* H3 */
	.single-post .entry h3 {
		margin-top: 2.5em;

		font-size: clamp(1.25rem, 5vw, 1.55rem);
	}


	/* H4 */
	.single-post .entry h4 {
		font-size: 1.06rem;
	}


	/* Lists */
	.single-post .entry ul > li {
		padding-left: 1.4em;
	}

	.single-post .entry ol > li {
		padding-left: 2.7em;
	}


	/* Table */
	.single-post .entry table {
		font-size: 0.9rem;
	}

	.single-post .entry th,
	.single-post .entry td {
		padding: 12px 10px;
	}

	.single-post .entry tbody th {
		width: 32%;
	}


	/* Blockquote */
	.single-post .entry blockquote {
		padding: 18px 20px;

		font-size: 0.93rem;
	}

}

/* ==================================================
   Fixed Page Design
   固定ページだけに適用し、トップページと投稿ページには影響しません。
================================================== */


/* --------------------------------------------------
   Page Base
-------------------------------------------------- */

.page:not(.home) #post {
	color: #333;
	font-size: 1rem;
	line-height: 1.9;
}

.page:not(.home) .entry {
	padding: 0;
}

.page:not(.home) #post p {
	margin: 0 0 1.45em;
	font-size: 1rem;
	line-height: 1.9;
	letter-spacing: 0.012em;
}


/* --------------------------------------------------
   Page Title / H1
-------------------------------------------------- */

.page:not(.home) .entrytitle {
	margin: 0 0 38px;
	padding: 0 0 20px;
	border-bottom: 1px solid #dfe5e8;
	color: var(--blackcolor);
	font-size: clamp(2rem, 3.2vw, 2.7rem);
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-align: left;
}


/* --------------------------------------------------
   H2 - 大きなセクション見出し
-------------------------------------------------- */

.page:not(.home) .entry h2 {
	position: relative;
	margin: 3.2em 0 1.35em;
	padding: 18px 22px 18px 26px;
	border: 0;
	background: #f3f6f8;
	color: #26343d;
	font-size: clamp(1.55rem, 2.4vw, 2rem);
	line-height: 1.55;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.page:not(.home) .entry h2::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background: var(--maincolor);
}


/* --------------------------------------------------
   H3 - 小見出し
-------------------------------------------------- */

.page:not(.home) .entry h3 {
	position: relative;
	margin: 2.6em 0 1.2em;
	padding: 0 0 13px;
	border: 0;
	border-bottom: 1px solid #dfe5e8;
	background: transparent;
	color: #26343d;
	font-size: clamp(1.28rem, 2vw, 1.62rem);
	line-height: 1.55;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.page:not(.home) .entry h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 46px;
	height: 2px;
	background: var(--maincolor);
}


/* --------------------------------------------------
   H4 - 項目内の補助見出し
-------------------------------------------------- */

.page:not(.home) .entry h4 {
	margin: 2.1em 0 1em;
	padding: 0.08em 0 0.08em 15px;
	border: 0;
	border-left: 3px solid var(--maincolor);
	background: transparent;
	color: #303c44;
	font-size: 1.1rem;
	line-height: 1.65;
	font-weight: 600;
	letter-spacing: 0.01em;
}


/* --------------------------------------------------
   Lists
-------------------------------------------------- */

.page:not(.home) .entry ul,
.page:not(.home) .entry ol {
	margin: 1.4em 0 1.8em;
	padding-left: 1.55em;
	color: #333;
	line-height: 1.85;
}

.page:not(.home) .entry ul {
	list-style: disc;
}

.page:not(.home) .entry ol {
	list-style: decimal;
}

.page:not(.home) .entry li {
	margin: 0 0 0.65em;
	padding-left: 0.2em;
}

.page:not(.home) .entry li:last-child {
	margin-bottom: 0;
}

.page:not(.home) .entry li::marker {
	color: var(--maincolor);
	font-weight: 600;
}

.page:not(.home) .entry li > ul,
.page:not(.home) .entry li > ol {
	margin-top: 0.55em;
	margin-bottom: 0.55em;
}


/* --------------------------------------------------
   Strong / Links
-------------------------------------------------- */

.page:not(.home) .entry strong {
	color: #222;
	font-weight: 600;
}

.page:not(.home) .entry a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}


/* --------------------------------------------------
   Images / Figures
-------------------------------------------------- */

.page:not(.home) .entry img {
	max-width: 100%;
	height: auto;
}

.page:not(.home) .entry figure {
	max-width: 100%;
	margin: 1.8em 0 2.2em;
}

.page:not(.home) .entry figure img {
	display: block;
	margin: 0;
}

.page:not(.home) .entry figcaption,
.page:not(.home) .entry .wp-caption-text {
	margin: 10px 0 0;
	padding: 0;
	color: #778188;
	font-size: 0.78rem;
	line-height: 1.65;
	text-align: left;
}

.page:not(.home) .entry .wp-caption {
	max-width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
}

.page:not(.home) .catchimg {
	margin: 0 0 40px;
}

.page:not(.home) .catchimg img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}


/* --------------------------------------------------
   Blockquote / Notice
-------------------------------------------------- */

.page:not(.home) .entry blockquote {
	margin: 2em 0;
	padding: 21px 24px;
	border: 0;
	border-left: 3px solid var(--maincolor);
	background: #f5f7f8;
	color: #434e55;
	font-size: 0.95rem;
	line-height: 1.85;
}

.page:not(.home) .entry blockquote p:last-child {
	margin-bottom: 0;
}


/* --------------------------------------------------
   Table
-------------------------------------------------- */

.page:not(.home) .entry table {
	width: 100%;
	margin: 2em 0 2.8em;
	border: 1px solid #dfe5e8;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	font-size: 0.95rem;
	line-height: 1.85;
	box-shadow: 0 8px 28px rgba(17, 34, 48, 0.045);
}

.page:not(.home) .entry th,
.page:not(.home) .entry td {
	padding: 20px 24px;
	border: 0;
	border-bottom: 1px solid #e3e8eb;
	vertical-align: top;
	text-align: left;
	font-size: inherit;
}

.page:not(.home) .entry th {
	width: 25%;
	border-right: 1px solid #e3e8eb;
	background: #f4f7f8;
	color: #29343b;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.page:not(.home) .entry tr:last-child th,
.page:not(.home) .entry tr:last-child td {
	border-bottom: 0;
}

.page:not(.home) .entry td > :first-child {
	margin-top: 0;
}

.page:not(.home) .entry td > :last-child {
	margin-bottom: 0;
}


/* --------------------------------------------------
   Horizontal Rule
-------------------------------------------------- */

.page:not(.home) .entry hr {
	margin: 2.8em 0;
	border: 0;
	border-top: 1px solid #dfe5e8;
}


/* ==================================================
   Fixed Page Responsive
================================================== */

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

	.page:not(.home) #post p {
		margin-bottom: 1.35em;
		font-size: 0.96rem;
		line-height: 1.9;
	}

	.page:not(.home) .entrytitle {
		margin-bottom: 30px;
		padding-bottom: 16px;
		font-size: clamp(1.7rem, 7vw, 2.25rem);
		line-height: 1.5;
	}

	.page:not(.home) .entry h2 {
		margin: 2.7em 0 1.2em;
		padding: 15px 16px 15px 20px;
		font-size: clamp(1.4rem, 6vw, 1.72rem);
	}

	.page:not(.home) .entry h2::before {
		width: 3px;
	}

	.page:not(.home) .entry h3 {
		margin: 2.3em 0 1.1em;
		padding-bottom: 11px;
		font-size: clamp(1.2rem, 5.2vw, 1.45rem);
	}

	.page:not(.home) .entry h4 {
		margin: 1.9em 0 0.9em;
		padding-left: 12px;
		font-size: 1.04rem;
	}

	.page:not(.home) .entry ul,
	.page:not(.home) .entry ol {
		margin: 1.25em 0 1.6em;
		padding-left: 1.4em;
		font-size: 0.96rem;
		line-height: 1.8;
	}

	.page:not(.home) .entry figure {
		margin: 1.5em 0 1.8em;
	}

	.page:not(.home) .entry blockquote {
		padding: 18px 19px;
		font-size: 0.92rem;
	}

	.page:not(.home) .entry table {
		font-size: 0.9rem;
	}

	.page:not(.home) .entry th,
	.page:not(.home) .entry td {
		padding: 13px 11px;
	}

	.page:not(.home) .entry th {
		width: 31%;
	}

}


/* ==================================================
   Archive / Category
================================================== */


/* --------------------------------------------------
   Archive Header
-------------------------------------------------- */

.archive #post {
	background: transparent;
}

.archive .archive-header {
	margin-bottom: 56px;
	padding-bottom: 34px;
	border-bottom: 1px solid #e5e8eb;
}

.archive .archive-header__label {
	margin: 0 0 14px;
	padding: 0;

	color: var(--maincolor);

	font-size: 0.72rem;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.18em;
}

.archive .archive-header__title {
	margin: 0;
	padding: 0;

	color: #222;

	font-size: clamp(2rem, 3vw, 2.8rem);
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.archive .archive-header__description {
	max-width: 720px;
	margin-top: 18px;

	color: #666;

	font-size: 0.95rem;
	line-height: 1.9;
}


/* --------------------------------------------------
   Archive List
-------------------------------------------------- */

.archive .archive-list {
	display: block;
}

.archive .archive-item {
	display: grid;

	grid-template-columns:
		minmax(280px, 0.42fr)
		minmax(0, 0.58fr);

	align-items: start;

	gap: 34px;

	margin: 0;
	padding: 34px 0;

	border-bottom: 1px solid #e5e8eb;
}


/* Image
-------------------------------------------------- */

.archive .archive-item__image {
	display: flex;
	align-items: center;
	justify-content: center;

	align-self: start;

	width: 100%;
	aspect-ratio: 16 / 9;

	margin: 0;
	padding: 0;

	overflow: hidden;

	background: #f6f7f8;

	text-decoration: none;
	line-height: 0;
}

.archive .archive-item__image img {
	display: block;

	width: 100% !important;
	height: 100% !important;
	max-width: none;

	margin: 0 !important;
	padding: 0;

	object-fit: contain;

	transition: transform 0.35s ease;
}

.archive .archive-item__image:hover img {
	transform: scale(1.025);
}


/* Body
-------------------------------------------------- */

.archive .archive-item__body {
	min-width: 0;
	padding-top: 2px;
}


/* Meta
-------------------------------------------------- */

.archive .archive-item__meta {
	display: flex;
	flex-wrap: wrap;

	align-items: center;

	gap: 8px 14px;

	margin-bottom: 14px;

	color: #777;

	font-size: 0.76rem;
	line-height: 1.5;
	letter-spacing: 0.04em;
}

.archive .archive-item__category {
	display: inline-block;

	padding: 3px 8px;

	background: #f2f5f7;

	color: #555;

	font-size: 0.72rem;
}


/* Title
-------------------------------------------------- */

.archive .archive-item__title {
	margin: 0 0 16px;
	padding: 0;

	background: none;
	border: 0;

	color: #222;

	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1.55;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.archive .archive-item__title a {
	color: inherit;
	text-decoration: none;
}

.archive .archive-item__title a:hover {
	color: var(--maincolor);
}


/* Excerpt
-------------------------------------------------- */

.archive .archive-item__excerpt {
	color: #555;

	font-size: 0.92rem;
	line-height: 1.9;
}

.archive .archive-item__excerpt p {
	margin: 0;
}


/* Read More
-------------------------------------------------- */

.archive #post p.archive-item__more {
	margin: 22px 0 0;
}

.archive .archive-item__more a {
	display: inline-flex;
	align-items: center;

	gap: 9px;

	padding: 0;

	border: 0;
	background: transparent;

	color: var(--maincolor);

	font-size: 0.82rem;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.03em;

	text-decoration: none;
}

.archive .archive-item__more span {
	transition: transform 0.25s ease;
}

.archive .archive-item__more a:hover span {
	transform: translateX(4px);
}


/* ==================================================
   Archive Responsive
================================================== */

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

	.archive .archive-header {
		margin-bottom: 40px;
		padding-bottom: 26px;
	}

	.archive .archive-item {
		grid-template-columns: 1fr;
		gap: 20px;

		padding: 30px 0;
	}

	.archive .archive-item__image {
		width: 100%;
	}

	.archive .archive-item__image img {
		aspect-ratio: 16 / 9;
	}

}


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

	.archive .archive-header__title {
		font-size: clamp(1.7rem, 7vw, 2.3rem);
	}

	.archive .archive-item__title {
		font-size: clamp(1.25rem, 5.5vw, 1.55rem);
	}

	.archive .archive-item__excerpt {
		font-size: 0.9rem;
		line-height: 1.85;
	}

}

/* ==================================================
   Entry Eyecatch
================================================== */

.single-post .entry-eyecatch,
.page .entry-eyecatch {
	margin: 34px 0 54px;
	padding: 18px;

	background: #f6f8fa;
}

.single-post .entry-eyecatch__image,
.page .entry-eyecatch__image {
	display: block;

	width: 100%;
	height: auto;

	margin: 0;

	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}


/* --------------------------------------------------
   Responsive
-------------------------------------------------- */

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

	.single-post .entry-eyecatch,
	.page .entry-eyecatch {
		margin: 26px 0 38px;
	}

}

/* ==================================================
   Pagination
================================================== */

.archive .pagination,
.archive .wp-pagenavi {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;

	margin: 46px 0 90px;
	padding: 0;

	font-size: 0.9rem;
}


/* ページ番号 */
.archive .pagination a,
.archive .pagination span,
.archive .wp-pagenavi a,
.archive .wp-pagenavi span {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 38px;
	height: 38px;

	padding: 0 11px;

	border: 1px solid #dfe4e8;

	background: #fff;

	color: #555;

	text-decoration: none;
	line-height: 1;

	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		color 0.2s ease;
}


/* hover */
.archive .pagination a:hover,
.archive .wp-pagenavi a:hover {
	border-color: var(--maincolor);
	color: var(--maincolor);
}


/* 現在ページ */
.archive .pagination .current,
.archive .wp-pagenavi .current {
	border-color: var(--maincolor);
	background: var(--maincolor);

	color: #fff;

	font-weight: 500;
}


/* 「1/13」のようなページ数表示 */
.archive .wp-pagenavi .pages {
	min-width: auto;

	padding: 0 12px;

	border-color: transparent;

	background: #f4f6f8;

	color: #777;
}


/* 省略記号 */
.archive .wp-pagenavi .extend {
	min-width: 30px;

	padding: 0 4px;

	border-color: transparent;

	background: transparent;

	color: #999;
}


/* 最後へ・次へ */
.archive .wp-pagenavi .nextpostslink,
.archive .wp-pagenavi .previouspostslink,
.archive .wp-pagenavi .last,
.archive .wp-pagenavi .first {
	padding-left: 14px;
	padding-right: 14px;
}

/* ==================================================
   Contact / Soudan
================================================== */

.soudan-area {
	margin-top: 90px;
	padding: 70px clamp(28px, 5vw, 70px) 76px;

	background: #f6f8fa;

	border: 0;
}


/* --------------------------------------------------
   Main Title
-------------------------------------------------- */

.soudan-area .soudan-title {
	margin: 0 0 18px;
	padding: 0;

	background: none;
	border: 0;

	color: #222;

	font-size: clamp(2rem, 3vw, 2.7rem);
	line-height: 1.45;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-align: left;
}


/* --------------------------------------------------
   Section Header
-------------------------------------------------- */

.soudan-area .soudan-header {
	margin: 44px 0 30px;
	padding: 0 0 15px;

	background: none;
	border: 0;
	border-bottom: 1px solid #dfe4e8;

	color: var(--maincolor);

	font-size: 1.15rem;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-align: left;
}


/* 最初の小見出し */
.soudan-area .soudan-title + .soudan-header {
	margin-top: 30px;
}


/* --------------------------------------------------
   Telephone
-------------------------------------------------- */

.soudan-area .center {
	text-align: left;
}

.soudan-area .center > p {
	margin: 0 0 12px;

	color: #555;

	font-size: 0.92rem;
	line-height: 1.8;
}

.soudan-area .soudancontact-number {
	margin: 0 0 6px;

	font-size: clamp(1.8rem, 3vw, 2.5rem);
	line-height: 1.3;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.soudan-area .soudancontact-number a {
	color: var(--maincolor);
	text-decoration: none;
}

.soudan-area .soudancontact-info {
	color: #777;

	font-size: 0.82rem;
	line-height: 1.7;
}


/* ==================================================
   Contact Form 7
================================================== */

.soudan-area .wpcf7 {
	margin: 0;
	padding: 0;
}

.soudan-area .wpcf7-form {
	margin: 0;
	padding: 0;
}


/* 各項目 */
.soudan-area .wpcf7-form p {
	margin: 0 0 28px;

	color: #333;

	font-size: 0.95rem;
	line-height: 1.8;
}


/* ラベル */
.soudan-area .wpcf7-form label {
	display: block;

	margin: 0 0 9px;

	color: #333;

	font-weight: 500;
}


/* --------------------------------------------------
   Form Controls
-------------------------------------------------- */

.soudan-area input[type="text"],
.soudan-area input[type="email"],
.soudan-area input[type="tel"],
.soudan-area input[type="url"],
.soudan-area select,
.soudan-area textarea {
	display: block;

	width: 100%;
	max-width: none;

	box-sizing: border-box;

	margin: 8px 0 0;
	padding: 13px 14px;

	border: 1px solid #cfd5da;
	border-radius: 2px;

	background: #fff;

	color: #222;

	font-family: inherit;
	font-size: 1rem;
	line-height: 1.6;

	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}


/* 一行フォーム */
.soudan-area input[type="text"],
.soudan-area input[type="email"],
.soudan-area input[type="tel"],
.soudan-area input[type="url"],
.soudan-area select {
	min-height: 50px;
}


/* textarea */
.soudan-area textarea {
	min-height: 210px;
	resize: vertical;
}


/* focus */
.soudan-area input[type="text"]:focus,
.soudan-area input[type="email"]:focus,
.soudan-area input[type="tel"]:focus,
.soudan-area input[type="url"]:focus,
.soudan-area select:focus,
.soudan-area textarea:focus {
	outline: none;

	border-color: var(--maincolor);

	background: #fff;

	box-shadow: 0 0 0 3px rgba(0, 72, 125, 0.08);
}


/* --------------------------------------------------
   Select
-------------------------------------------------- */

.soudan-area select {
	appearance: auto;
	-webkit-appearance: auto;

	cursor: pointer;
}


/* --------------------------------------------------
   Checkbox
-------------------------------------------------- */

.soudan-area input[type="checkbox"] {
	width: 16px;
	height: 16px;

	margin: 0 8px 0 0;

	vertical-align: -2px;

	accent-color: var(--maincolor);
}

.soudan-area .wpcf7-list-item {
	margin-left: 0;
}


/* --------------------------------------------------
   Required
-------------------------------------------------- */

.soudan-area .required,
.soudan-area .hissu,
.soudan-area .must {
	display: inline-block;

	margin-left: 7px;
	padding: 2px 6px;

	background: var(--maincolor);

	color: #fff;

	font-size: 0.65rem;
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: 0.03em;

	vertical-align: 2px;
}


/* --------------------------------------------------
   Submit
-------------------------------------------------- */

.soudan-area input[type="submit"],
.soudan-area button[type="submit"] {
	display: block;

	width: min(100%, 320px);

	margin: 38px auto 0;
	padding: 15px 28px;

	border: 0;
	border-radius: 2px;

	background: var(--maincolor);

	color: #fff;

	font-family: inherit;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.06em;

	cursor: pointer;

	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.soudan-area input[type="submit"]:hover,
.soudan-area button[type="submit"]:hover {
	background: #062f56;
	transform: translateY(-1px);
}


/* --------------------------------------------------
   CF7 Messages
-------------------------------------------------- */

.soudan-area .wpcf7-response-output {
	margin: 28px 0 0 !important;
	padding: 14px 16px !important;

	border-width: 1px !important;

	font-size: 0.88rem;
	line-height: 1.7;
}

.soudan-area .wpcf7-not-valid-tip {
	margin-top: 6px;

	color: #b42318;

	font-size: 0.78rem;
}


/* --------------------------------------------------
   reCAPTCHA / note
-------------------------------------------------- */

.soudan-area .wpcf7-form > p:last-child {
	margin-top: 34px;
	margin-bottom: 0;

	color: #777;

	font-size: 0.78rem;
	line-height: 1.8;
}


/* ==================================================
   Responsive
================================================== */

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

	.soudan-area {
		margin-top: 70px;
		padding: 46px 20px 52px;
	}

	.soudan-area .soudan-title {
		font-size: clamp(1.7rem, 7vw, 2.2rem);
	}

	.soudan-area .soudan-header {
		margin-top: 34px;
		margin-bottom: 24px;

		font-size: 1.05rem;
	}

	.soudan-area .wpcf7-form p {
		margin-bottom: 24px;

		font-size: 0.92rem;
	}

	.soudan-area input[type="text"],
	.soudan-area input[type="email"],
	.soudan-area input[type="tel"],
	.soudan-area input[type="url"],
	.soudan-area select,
	.soudan-area textarea {
		font-size: 16px;
	}

	.soudan-area textarea {
		min-height: 180px;
	}

	.soudan-area input[type="submit"],
	.soudan-area button[type="submit"] {
		width: 100%;
	}

}

/* --------------------------------------------------
   Post Date
-------------------------------------------------- */

.single .entry-date {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin: 12px 0 28px;
	color: #777;
	font-size: 0.82rem;
	line-height: 1.6;
	letter-spacing: 0.02em;
}

.single .entry-date time {
	color: inherit;
}

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

	.single .entry-date {
		gap: 4px 16px;
		margin: 10px 0 22px;
		font-size: 0.78rem;
	}

}

/* ==================================================
   Sidebar - Modern Style
================================================== */


/* --------------------------------------------------
   Sidebar Base
-------------------------------------------------- */

#sidebar {
	color: #344149;
	background: #fff;
}

#sidebar .sidesticky {
	margin: 0;
	padding: 0;
}

#sidebar .sidesticky > ul {
	margin: 0;
	padding: 0;
}

#sidebar .sidesticky > ul > .widget {
	margin: 0 0 46px;
	padding: 0;
}

#sidebar .sidesticky > ul > .widget:last-child {
	margin-bottom: 0;
}


/* --------------------------------------------------
   Widget Heading
-------------------------------------------------- */

#sidebar .side-h {
	position: relative;
	margin: 0 0 20px;
	padding: 0 0 15px;
	border: 0;
	border-bottom: 1px solid var( --maincolor);
	color: #26343d;
	font-size: 1.08rem;
	line-height: 1.55;
	font-weight: 500;
	letter-spacing: 0.015em;
}

/* --------------------------------------------------
   Standard Link Lists
-------------------------------------------------- */

#sidebar .widget ul {
	margin: 0;
	padding: 0;
}

#sidebar .widget ul li {
	margin: 0;
	padding: 0;
}

#sidebar li li a {
	position: relative;
	display: block;
	padding: 12px 25px 12px 0;
	border: 0;
	border-bottom: 1px solid #e8ecef;
	background: transparent;
	color: #33424b;
	font-size: 0.88rem;
	line-height: 1.7;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-decoration: none;
	transition:
		color 0.22s ease,
		padding-left 0.22s ease;
}

#sidebar li li a:visited {
	color: #33424b;
}

#sidebar li li a::after {
	content: "→";
	position: absolute;
	top: 50%;
	right: 3px;
	color: #a2abb1;
	font-size: 0.82rem;
	line-height: 1;
	transform: translateY(-50%);
	transition:
		color 0.22s ease,
		transform 0.22s ease;
}

#sidebar li li a:hover {
	padding-left: 4px;
	background: transparent;
	color: var(--maincolor);
}

#sidebar li li a:hover::after {
	color: var(--maincolor);
	transform: translate(3px, -50%);
}

#sidebar li li a:focus-visible {
	outline: 2px solid var(--maincolor);
	outline-offset: 3px;
}


/* --------------------------------------------------
   Text Widget
-------------------------------------------------- */

#sidebar .textwidget {
	padding: 0;
	color: #4a555c;
	font-size: 0.88rem;
	line-height: 1.85;
}

#sidebar .textwidget p {
	margin: 0 0 1em;
}

#sidebar .textwidget p:last-child {
	margin-bottom: 0;
}


/* --------------------------------------------------
   Contact Widget
-------------------------------------------------- */

#sidebar .sidecontact-box {
	padding: 24px;
	border: 0;
	border-left: 3px solid var(--maincolor);
	background: #f3f6f8;
	color: #33424b;
	font-weight: 400;
}

#sidebar .sidecontact-title {
	margin: 0 0 15px;
	color: #26343d;
	font-size: 1.12rem;
	line-height: 1.6;
	font-weight: 500;
	text-align: left;
}

#sidebar .sidecontact-box a {
}


/* ==================================================
   Sidebar Responsive
================================================== */

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

	#sidebar {
		margin-top: 64px;
		padding-top: 54px;
		border-top: 1px solid #e2e7ea;
	}

	#sidebar .sidesticky > .widget {
		margin-bottom: 44px;
	}

}


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

	#sidebar {
		margin-top: 52px;
		padding-top: 44px;
	}

	#sidebar .sidesticky > .widget {
		margin-bottom: 38px;
	}

	#sidebar .side-h {
		margin-bottom: 16px;
		padding-bottom: 13px;
		font-size: 1.02rem;
	}

	#sidebar li li a {
		padding-top: 11px;
		padding-bottom: 11px;
		font-size: 0.86rem;
	}

	#sidebar .sidecontact-box {
		padding: 21px;
	}

}


@media (prefers-reduced-motion: reduce) {

	#sidebar a,
	#sidebar a::after {
		transition: none !important;
		transform: none !important;
	}

}

/* =========================================================
   サイドバー検索フォーム
========================================================= */

/*
 * 従来型ウィジェット
 * ブロック型検索ウィジェット
 * 旧形式の #searchform
 * のすべてに対応
 */
#sidebar .search-form,
#sidebar #searchform,
#sidebar .wp-block-search__inside-wrapper {
	display: flex;
	align-items: stretch;
	width: 100%;
	margin: 0;
	gap: 0;
}

#sidebar .search-form__label,
#sidebar .search-form label {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
}

/* 検索入力欄 */
#sidebar .search-field,
#sidebar #s,
#sidebar .wp-block-search__input {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	height: 46px;
	margin: 0;
	padding: 0 15px;

	color: #333;
	background-color: #fff;
	border: 1px solid #d8e0e5;
	border-right: 0;
	border-radius: 3px 0 0 3px;

	font: inherit;
	font-size: 0.94em;
	line-height: 1;

	-webkit-appearance: none;
	appearance: none;

	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

#sidebar .search-field::placeholder,
#sidebar #s::placeholder,
#sidebar .wp-block-search__input::placeholder {
	color: #9099a1;
	opacity: 1;
}

/* 入力時・フォーカス時 */
#sidebar .search-field:focus,
#sidebar #s:focus,
#sidebar .wp-block-search__input:focus {
	position: relative;
	z-index: 1;

	background-color: #fff;
	border-color: var(--maincolor);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 74, 128, 0.1);
}

/* 検索ボタン */
#sidebar .search-submit,
#sidebar #searchsubmit,
#sidebar .wp-block-search__button {
	box-sizing: border-box;
	flex: 0 0 auto;
	min-width: 78px;
	height: 46px;
	margin: 0 !important;
	padding: 0 17px;

	color: #fff;
	background-color: var(--maincolor);
	border: 1px solid var(--maincolor);
	border-radius: 0 3px 3px 0;

	font: inherit;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	text-align: center;

	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;

	transition:
		filter 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

#sidebar .search-submit:hover,
#sidebar #searchsubmit:hover,
#sidebar .wp-block-search__button:hover {
	color: #fff;
	filter: brightness(0.88);
}

#sidebar .search-submit:active,
#sidebar #searchsubmit:active,
#sidebar .wp-block-search__button:active {
	transform: translateY(1px);
}

#sidebar .search-submit:focus-visible,
#sidebar #searchsubmit:focus-visible,
#sidebar .wp-block-search__button:focus-visible {
	outline: 3px solid rgba(0, 74, 128, 0.2);
	outline-offset: 2px;
}

/* Safariの検索欄に表示される装飾を調整 */
#sidebar input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

#sidebar input[type="search"]::-webkit-search-cancel-button {
	cursor: pointer;
}


/* =========================================================
   ページ上部へ戻るボタン
========================================================= */

#back-top {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 50;

	margin: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);

	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		transform 0.25s ease;
}

#back-top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

#back-top a {
	box-sizing: border-box;
	display: grid;
	place-items: center;

	width: 48px;
	height: 48px;

	color: #fff;
	background-color: var(--maincolor);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;

	box-shadow:
		0 5px 16px rgba(20, 42, 60, 0.16),
		0 1px 3px rgba(20, 42, 60, 0.12);

	transition:
		transform 0.2s ease,
		filter 0.2s ease,
		box-shadow 0.2s ease;
}

#back-top a:visited {
	color: #fff;
}

/* CSSで上向き矢印を描画 */
#back-top a span {
	display: block;
	width: 11px;
	height: 11px;

	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;

	transform: translateY(3px) rotate(45deg);
}

#back-top a:hover {
	color: #fff;
	filter: brightness(0.9);
	transform: translateY(-3px);

	box-shadow:
		0 8px 20px rgba(20, 42, 60, 0.2),
		0 2px 5px rgba(20, 42, 60, 0.14);
}

#back-top a:active {
	transform: translateY(-1px);
}

#back-top a:focus-visible {
	outline: 3px solid rgba(0, 74, 128, 0.24);
	outline-offset: 3px;
}


/* =========================================================
   スマートフォン
========================================================= */

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

	#sidebar .search-field,
	#sidebar #s,
	#sidebar .wp-block-search__input,
	#sidebar .search-submit,
	#sidebar #searchsubmit,
	#sidebar .wp-block-search__button {
		height: 44px;
	}

	#sidebar .search-submit,
	#sidebar #searchsubmit,
	#sidebar .wp-block-search__button {
		min-width: 72px;
		padding-right: 14px;
		padding-left: 14px;
	}

	#back-top {
		right: 16px;
		bottom: 16px;
	}

	#back-top a {
		width: 44px;
		height: 44px;
	}
}


/* 動きを抑える設定を利用している場合 */
@media (prefers-reduced-motion: reduce) {

	#back-top,
	#back-top a,
	#sidebar .search-field,
	#sidebar #s,
	#sidebar .wp-block-search__input,
	#sidebar .search-submit,
	#sidebar #searchsubmit,
	#sidebar .wp-block-search__button {
		transition: none;
	}

	html {
		scroll-behavior: auto;
	}
}

/* ==========================================================
   サイドバーお問い合わせボックス
========================================================== */

#sidebar .sidecontact-box {
	box-sizing: border-box;
	margin-top: 30px;
	padding: 26px 22px 22px;
	border: 1px solid #dbe4ea;
	border-radius: 10px;
	background-color: var(--whitecolor);
	color: var(--blackcolor);
	text-align: center;
	box-shadow: 0 8px 24px rgba(8, 64, 115, 0.08);
}

/* お問い合わせ */
#sidebar .sidecontact-title {
	margin: 0 0 8px;
	padding: 0;
	color: var(--maincolor);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.03em;
}

/* 事務所名 */
#sidebar .sidecontact-office {
	margin-bottom: 18px;
	color: var(--blackcolor);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
}

/* 案内文 */
#sidebar .sidecontact-message {
	margin: 0 0 22px;
	padding: 18px;
	border: 0;
	border-radius: 6px;
	background-color: var(--lightcolor);
	color: var(--blackcolor);
	font-size: 14px;
	line-height: 1.8;
	text-align: left;
}

/* 電話番号上のラベル */
#sidebar .sidecontact-tel-label {
	margin-bottom: 6px;
	color: #5c6971;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

/* 電話番号 */
#sidebar .sidecontact-number {
	margin: 0 0 7px;
	padding: 0;
	font-size: clamp(24px, 2vw, 30px);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	line-height: 1.3;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

#sidebar .sidecontact-number a,
#sidebar .sidecontact-number a:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	color: var(--maincolor);
	text-decoration: none;
}

#sidebar .sidecontact-number a:hover {
	color: var(--markercolor);
	text-decoration: none;
}

#sidebar .sidecontact-number svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
}

/* 受付時間 */
#sidebar .sidecontact-hours {
	margin-bottom: 22px;
	color: #5c6971;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
}

/* お問い合わせボタン */
#sidebar .sidecontact-button,
#sidebar .sidecontact-button:visited {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	box-sizing: border-box;
	width: 100%;
	min-height: 50px;
	padding: 11px 16px;
	border: 1px solid var(--maincolor);
	border-radius: 6px;
	background-color: var(--maincolor);
	color: var(--whitecolor);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

#sidebar .sidecontact-button:hover {
	background-color: var(--whitecolor);
	color: var(--maincolor);
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(8, 64, 115, 0.14);
}

#sidebar .sidecontact-button svg {
	flex: 0 0 auto;
	width: 19px;
	height: 19px;
}

#sidebar .sidecontact-box .sidecontact-title {
	width: 100%;
	margin: 0 0 18px;
	padding: 0;
	color: var(--maincolor);
	font-size: 23px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.03em;
	text-align: center;
}

/* ==========================================================
   スマートフォン・タブレット
========================================================== */

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

	#sidebar .sidecontact-box {
		max-width: 520px;
		margin: 35px auto 0;
	}

}

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

	#sidebar .sidecontact-box {
		padding: 24px 20px 20px;
		border-radius: 8px;
	}

	#sidebar .sidecontact-title {
		font-size: 22px;
	}

	#sidebar .sidecontact-message {
		padding: 16px;
		font-size: 14px;
	}

	#sidebar .sidecontact-number {
		font-size: clamp(25px, 8vw, 30px);
	}

}

/* 電話番号未設定時のお問い合わせボックス */
.cb-main--mail-only {
	justify-content: center;
}

.cb-main--mail-only .cb-main-right {
	flex: 0 1 600px;
	width: 100%;
}

/* =========================================================
   Contact Box
========================================================= */

.contact-box {
	background: var( --maincolor);
	color: #fff;
	padding: 64px 24px 68px;
}

.contact-box > .inner,
#content .contact-box > .inner {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding-right: 0;
	padding-left: 0;
	box-sizing: border-box;
}


/* Heading
--------------------------------------------------------- */

.cb-heading {
	text-align: center;
}

.cb-title {
	margin: 0;
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: .02em;
}

.cb-sub {
	margin-top: 8px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: .02em;
	opacity: .9;
}


/* Main
--------------------------------------------------------- */

.cb-main {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, .28);
}

.cb-main--single {
	grid-template-columns: minmax(0, 680px);
	justify-content: center;
}

.cb-main-left,
.cb-main-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	padding: 34px 48px 0;
	text-align: center;
}

.cb-main:not(.cb-main--single) .cb-main-left {
	border-right: 1px solid rgba(255, 255, 255, .28);
}


/* Method title
--------------------------------------------------------- */

.cb-method-title {
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .03em;
}

.cb-method-info {
	min-height: 26px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: .02em;
	opacity: .9;
}

.cb-method-info span {
	margin-left: .35em;
}


/* Telephone
--------------------------------------------------------- */

.cb-number {
	margin-top: 14px;
}

.cb-number a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
	font-size: clamp(34px, 3.4vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: .025em;
	text-decoration: none;
	white-space: nowrap;
}

.cb-number svg {
	width: .48em;
	height: .48em;
	flex-shrink: 0;
}

.cb-number a:hover {
	color: #fff;
	opacity: .82;
}
/* Mail button
--------------------------------------------------------- */

.contact-box .cb-button {
	width: 100%;
	margin-top: 18px;
}

.contact-box .cb-button .cb-button-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	width: min(100%, 420px);
	min-height: 60px;
	margin: 0 auto;
	padding: 12px 28px;

	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 4px;
	background: transparent;

	color: #fff;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: .02em;
	text-decoration: none;

	box-sizing: border-box;

	transition:
		background-color .2s ease,
		color .2s ease,
		border-color .2s ease;
}

.contact-box .cb-button .cb-button-link:link,
.contact-box .cb-button .cb-button-link:visited {
	color: #fff;
	text-decoration: none;
}

.contact-box .cb-button .cb-button-link:hover {
	border-color: #fff;
	background: #fff;
	color: #0d4a7a;
	text-decoration: none;
}

.contact-box .cb-button .cb-button-link svg {
	width: 19px;
	height: 19px;
	flex-shrink: 0;
}


/* Tablet / Smartphone
--------------------------------------------------------- */

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

	.contact-box {
		padding: 48px 20px 52px;
	}

	.cb-title {
		font-size: clamp(23px, 7vw, 28px);
		line-height: 1.5;
	}

	.cb-sub {
		margin-top: 6px;
		font-size: 15px;
	}

	.cb-main,
	.cb-main--single {
		display: block;
		margin-top: 30px;
	}

	.cb-main-left,
	.cb-main-right {
		padding: 28px 0;
	}

	.cb-main:not(.cb-main--single) .cb-main-left {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .28);
	}

	.cb-method-title {
		font-size: 17px;
	}

	.cb-method-info {
		min-height: 0;
		font-size: 14px;
	}

	.cb-number {
		margin-top: 12px;
	}

	.cb-number a {
		gap: 7px;
		font-size: clamp(33px, 10vw, 42px);
	}

	.contact-box .cb-button {
		margin-top: 17px;
	}

	.contact-box .cb-button .cb-button-link {
		min-height: 56px;
		font-size: 16px;
	}

}


/* Very small screens
--------------------------------------------------------- */

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

	.contact-box {
		padding-right: 16px;
		padding-left: 16px;
	}

	.cb-number a {
		font-size: 31px;
	}

}


/* =========================================================
   Genomos Top / Section 1
   行政書士のホームページ制作に関する悩み
========================================================= */

.genomos-concerns {
	padding: 112px 0 82px;
	border-top: 1px solid #e7ecef;
	background: #fff;
}

.genomos-concerns .genomos-concerns__inner {
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}


/* Section heading
--------------------------------------------------------- */

.genomos-concerns__header {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
	align-items: end;
	gap: 22px 70px;
	margin-bottom: 64px;
}

.genomos-concerns__eyebrow {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	gap: 12px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-concerns__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-concerns__header h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(30px, 3.2vw, 43px);
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: -.02em;
	text-align: left;
}

#top-lp .genomos-concerns__header > p {
	margin: 0 0 7px;
	color: #52616d;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: .025em;
}


/* Concern list
--------------------------------------------------------- */

.genomos-concerns__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid #dce3e7;
	border-bottom: 1px solid #dce3e7;
}

.genomos-concerns__item {
	position: relative;
	min-width: 0;
	padding: 38px 34px 42px;
	border-left: 1px solid #dce3e7;
}

.genomos-concerns__item:first-child {
	padding-left: 0;
	border-left: 0;
}

.genomos-concerns__item:last-child {
	padding-right: 0;
}

.genomos-concerns__number {
	margin-bottom: 26px;
	color: #2d82ad;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .05em;
}

#top-lp .genomos-concerns__item h3 {
	min-height: 3.2em;
	margin: 0 0 22px;
	padding: 0;
	color: #173f60;
	font-size: clamp(19px, 1.75vw, 23px);
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .01em;
}

#top-lp .genomos-concerns__item p {
	margin: 0;
	color: #4c5963;
	font-size: 15px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}

/* Tablet
--------------------------------------------------------- */

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

	.genomos-concerns {
		padding: 86px 0 70px;
	}

	.genomos-concerns .genomos-concerns__inner {
		padding-right: 28px;
		padding-left: 28px;
	}

	.genomos-concerns__header {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-bottom: 50px;
	}

	.genomos-concerns__eyebrow {
		grid-column: auto;
	}

	#top-lp .genomos-concerns__header > p {
		max-width: 620px;
		margin: 0;
	}

	.genomos-concerns__item {
		padding-right: 24px;
		padding-left: 24px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-concerns {
		padding: 70px 0 58px;
	}

	.genomos-concerns .genomos-concerns__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-concerns__header {
		margin-bottom: 42px;
	}

	.genomos-concerns__eyebrow {
		gap: 9px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-concerns__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-concerns__header h2 {
		font-size: clamp(27px, 8vw, 34px);
		line-height: 1.55;
	}

	#top-lp .genomos-concerns__header > p {
		font-size: 14px;
	}

	.genomos-concerns__list {
		display: block;
		border-bottom: 0;
	}

	.genomos-concerns__item,
	.genomos-concerns__item:first-child,
	.genomos-concerns__item:last-child {
		padding: 30px 0 32px;
		border-bottom: 1px solid #dce3e7;
		border-left: 0;
	}

	.genomos-concerns__number {
		margin-bottom: 18px;
		font-size: 16px;
	}

	#top-lp .genomos-concerns__item h3 {
		min-height: 0;
		margin-bottom: 14px;
		font-size: 20px;
	}

	#top-lp .genomos-concerns__item p {
		font-size: 14px;
		line-height: 1.9;
	}

}


/* =========================================================
   Genomos Top / Section 2
   ホームページ制作で迷いや不安が生まれる理由
========================================================= */

.genomos-questions {
	position: relative;
	padding: 108px 0 112px;
	background: #f1f4f5;
}

.genomos-questions .genomos-questions__inner {
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}


/* Section heading
--------------------------------------------------------- */

.genomos-questions__header {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
	align-items: end;
	gap: 22px 70px;
	margin-bottom: 60px;
}

.genomos-questions__eyebrow {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	gap: 12px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-questions__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-questions__header h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(30px, 3.2vw, 43px);
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: -.02em;
	text-align: left;
}

#top-lp .genomos-questions__header > p {
	margin: 0 0 7px;
	color: #52616d;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.9;
	letter-spacing: .025em;
}


/* Contrasting voices
--------------------------------------------------------- */

.genomos-questions__voices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid #cfd9de;
	border-bottom: 1px solid #cfd9de;
}

.genomos-questions__voice {
	padding: 40px 44px 42px 0;
}

.genomos-questions__voice + .genomos-questions__voice {
	padding-right: 0;
	padding-left: 44px;
	border-left: 1px solid #cfd9de;
}

.genomos-questions__voice-label {
	margin-bottom: 22px;
	color: #7a8993;
	font-size: 10px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .16em;
}

.genomos-questions__voice--positive .genomos-questions__voice-label {
	color: #2d82ad;
}

#top-lp .genomos-questions__voice p {
	margin: 0;
	color: #173f60;
	font-size: clamp(18px, 1.75vw, 23px);
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: .01em;
}

#top-lp .genomos-questions__voice p + p {
	margin-top: 9px;
}


/* Explanation and answer
--------------------------------------------------------- */

.genomos-questions__explanation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 54px;
	max-width: 1040px;
	margin: 52px auto 0;
}

#top-lp .genomos-questions__explanation p {
	margin: 0;
	color: #46545e;
	font-size: 15px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}

.genomos-questions__answer {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	align-items: center;
	gap: 24px;
	max-width: 1040px;
	margin: 52px auto 0;
	padding: 28px 34px;
	border-left: 3px solid #2d82ad;
	background: #fff;
	box-sizing: border-box;
}

.genomos-questions__answer > span {
	color: #2d82ad;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .18em;
}

#top-lp .genomos-questions__answer p {
	margin: 0;
	color: #173f60;
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: .015em;
}


/* Tablet
--------------------------------------------------------- */

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

	.genomos-questions {
		padding: 86px 0 90px;
	}

	.genomos-questions .genomos-questions__inner {
		padding-right: 28px;
		padding-left: 28px;
	}

	.genomos-questions__header {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-bottom: 48px;
	}

	.genomos-questions__eyebrow {
		grid-column: auto;
	}

	#top-lp .genomos-questions__header > p {
		max-width: 620px;
		margin: 0;
	}

	.genomos-questions__voice {
		padding-right: 30px;
	}

	.genomos-questions__voice + .genomos-questions__voice {
		padding-left: 30px;
	}

	.genomos-questions__explanation {
		gap: 34px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-questions {
		padding: 70px 0 74px;
	}

	.genomos-questions .genomos-questions__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-questions__header {
		margin-bottom: 40px;
	}

	.genomos-questions__eyebrow {
		gap: 9px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-questions__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-questions__header h2 {
		font-size: clamp(27px, 8vw, 34px);
		line-height: 1.55;
	}

	#top-lp .genomos-questions__header > p {
		font-size: 14px;
	}

	.genomos-questions__voices {
		display: block;
	}

	.genomos-questions__voice,
	.genomos-questions__voice + .genomos-questions__voice {
		padding: 30px 0 32px;
		border-left: 0;
	}

	.genomos-questions__voice + .genomos-questions__voice {
		border-top: 1px solid #cfd9de;
	}

	#top-lp .genomos-questions__voice p {
		font-size: 18px;
	}

	.genomos-questions__explanation {
		display: block;
		margin-top: 38px;
	}

	#top-lp .genomos-questions__explanation p {
		font-size: 14px;
		line-height: 1.9;
	}

	#top-lp .genomos-questions__explanation p + p {
		margin-top: 20px;
	}

	.genomos-questions__answer {
		display: block;
		margin-top: 38px;
		padding: 24px 22px;
	}

	.genomos-questions__answer > span {
		display: block;
		margin-bottom: 12px;
	}

	#top-lp .genomos-questions__answer p {
		font-size: 18px;
	}

}


/* =========================================================
   Genomos Top / Consultation
   サービス選択へつなぐ相談セクション
========================================================= */

.genomos-consultation {
	position: relative;
	padding: 112px 0 116px;
	background: #fff;
}

.genomos-consultation .genomos-consultation__inner {
	display: grid;
	grid-template-columns: minmax(340px, .9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(58px, 7vw, 92px);
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}


/* Photograph
--------------------------------------------------------- */

.genomos-consultation__media {
	position: relative;
	min-width: 0;
	margin: 0;
	padding: 0;
}

.genomos-consultation__media::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: -20px;
	left: -20px;
	border: 1px solid rgba(23, 63, 96, .2);
}

.genomos-consultation__media img {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
}

/* Copy
--------------------------------------------------------- */

.genomos-consultation__content {
	min-width: 0;
}

.genomos-consultation__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-consultation__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-consultation__content h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(32px, 3.4vw, 46px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -.025em;
	text-align: left;
}

.genomos-consultation__text {
	margin-top: 34px;
}

#top-lp .genomos-consultation__text p {
	margin: 0;
	color: #46545e;
	font-size: 15px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}

#top-lp .genomos-consultation__text p + p {
	margin-top: 16px;
}


/* Service links
--------------------------------------------------------- */

.genomos-consultation__services {
	margin-top: 42px;
	border-top: 1px solid #d9e1e5;
}

.genomos-consultation__services a {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 24px;
	align-items: center;
	gap: 18px;
	padding: 22px 18px 22px 6px;
	border-bottom: 1px solid #d9e1e5;
	color: #173f60;
	text-decoration: none;
	transition:
		padding .2s ease,
		background-color .2s ease,
		color .2s ease;
}

.genomos-consultation__service-number {
	color: #2d82ad;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	line-height: 1;
	transition: color .2s ease;
}

.genomos-consultation__service-copy {
	display: block;
	min-width: 0;
}

.genomos-consultation__service-copy strong,
.genomos-consultation__service-copy small {
	display: block;
}

.genomos-consultation__service-copy strong {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: .015em;
}

.genomos-consultation__service-copy small {
	margin-top: 5px;
	color: #697985;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .02em;
	transition: color .2s ease;
}

.genomos-consultation__service-arrow {
	font-size: 18px;
	line-height: 1;
	transition: transform .2s ease;
}

.genomos-consultation__services a:hover {
	padding-right: 22px;
	padding-left: 18px;
	background: #173f60;
	color: #fff;
}

.genomos-consultation__services a:hover .genomos-consultation__service-number,
.genomos-consultation__services a:hover .genomos-consultation__service-copy small {
	color: #8ed0ec;
}

.genomos-consultation__services a:hover .genomos-consultation__service-arrow {
	transform: translateX(3px);
}

.genomos-consultation__services a:focus-visible {
	outline: 2px solid #2d82ad;
	outline-offset: 3px;
}


/* Tablet
--------------------------------------------------------- */

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

	.genomos-consultation {
		padding: 88px 0 92px;
	}

	.genomos-consultation .genomos-consultation__inner {
		grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
		gap: 48px;
		padding-right: 28px;
		padding-left: 28px;
	}

	#top-lp .genomos-consultation__content h2 {
		font-size: clamp(30px, 4.8vw, 39px);
	}

	.genomos-consultation__text {
		margin-top: 26px;
	}

	#top-lp .genomos-consultation__text p {
		font-size: 14px;
		line-height: 1.9;
	}

	.genomos-consultation__services {
		margin-top: 32px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-consultation {
		padding: 70px 0 76px;
	}

	.genomos-consultation .genomos-consultation__inner {
		display: flex;
		flex-direction: column;
		gap: 52px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-consultation__content {
		order: 1;
	}

	.genomos-consultation__media {
		order: 2;
		width: calc(100% - 14px);
		margin-right: 14px;
	}

	.genomos-consultation__media::before {
		top: 14px;
		right: -14px;
		bottom: -14px;
		left: 14px;
	}

	.genomos-consultation__media img {
		aspect-ratio: 16 / 10;
	}

	.genomos-consultation__eyebrow {
		gap: 9px;
		margin-bottom: 18px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-consultation__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-consultation__content h2 {
		font-size: clamp(28px, 8.5vw, 36px);
		line-height: 1.5;
	}

	.genomos-consultation__service-copy strong {
		font-size: 16px;
	}

	.genomos-consultation__services a {
		grid-template-columns: 32px minmax(0, 1fr) 20px;
		gap: 12px;
		padding-right: 8px;
	}

	.genomos-consultation__services a:hover {
		padding-right: 12px;
		padding-left: 10px;
	}

}


/* =========================================================
   Genomos Top / Features
   ジェノモスが選ばれる5つの理由
========================================================= */

.genomos-features {
	padding: 112px 0 120px;
	background: #f4f7f8;
}

.genomos-features .genomos-features__inner {
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}


/* Heading
--------------------------------------------------------- */

.genomos-features__header {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
	align-items: end;
	gap: clamp(54px, 8vw, 110px);
	margin-bottom: 72px;
}

.genomos-features__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-features__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-features__heading h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -.03em;
	text-align: left;
}

#top-lp .genomos-features__lead {
	margin: 0 0 7px;
	color: #53636e;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}


/* Feature rows
--------------------------------------------------------- */

.genomos-features__list {
	margin: 0;
	padding: 0;
	border-top: 1px solid #cfd9de;
	list-style: none;
}

.genomos-features__item {
	display: grid;
	grid-template-columns: 72px minmax(250px, .82fr) minmax(0, 1.18fr);
	align-items: start;
	gap: clamp(30px, 5vw, 72px);
	margin: 0;
	padding: 48px 6px 50px;
	border-bottom: 1px solid #cfd9de;
}

.genomos-features__number {
	padding-top: 5px;
	color: #2d82ad;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	line-height: 1;
	letter-spacing: .04em;
}

.genomos-features__title span {
	display: block;
	margin-bottom: 13px;
	color: #71828d;
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

#top-lp .genomos-features__title h3 {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: #173f60;
	font-size: clamp(22px, 2.15vw, 29px);
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: -.015em;
}

#top-lp .genomos-features__text p {
	margin: 0;
	color: #46545e;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}

#top-lp .genomos-features__text .genomos-features__note {
	margin-top: 10px;
	color: #71808a;
	font-size: 11px;
	line-height: 1.8;
}


/* Tablet
--------------------------------------------------------- */

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

	.genomos-features {
		padding: 88px 0 96px;
	}

	.genomos-features .genomos-features__inner {
		padding-right: 28px;
		padding-left: 28px;
	}

	.genomos-features__header {
		grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
		gap: 44px;
		margin-bottom: 58px;
	}

	.genomos-features__item {
		grid-template-columns: 54px minmax(210px, .85fr) minmax(0, 1.15fr);
		gap: 28px;
		padding-top: 40px;
		padding-bottom: 42px;
	}

	#top-lp .genomos-features__title h3 {
		font-size: 23px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-features {
		padding: 70px 0 76px;
	}

	.genomos-features .genomos-features__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-features__header {
		display: block;
		margin-bottom: 46px;
	}

	.genomos-features__eyebrow {
		gap: 9px;
		margin-bottom: 18px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-features__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-features__heading h2 {
		font-size: clamp(28px, 8.5vw, 36px);
		line-height: 1.5;
	}

	#top-lp .genomos-features__lead {
		margin-top: 24px;
		font-size: 13px;
		line-height: 1.9;
	}

	.genomos-features__item {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 0 14px;
		padding: 34px 0 36px;
	}

	.genomos-features__number {
		grid-column: 1;
		grid-row: 1;
		font-size: 17px;
	}

	.genomos-features__title {
		grid-column: 2;
		grid-row: 1;
	}

	.genomos-features__text {
		grid-column: 2;
		grid-row: 2;
		margin-top: 22px;
	}

	#top-lp .genomos-features__title h3 {
		font-size: 22px;
		line-height: 1.5;
	}

	#top-lp .genomos-features__text p {
		font-size: 13px;
		line-height: 1.9;
	}

}


/* =========================================================
   Genomos Top / Works
   行政書士ホームページの制作事例
========================================================= */

.genomos-works {
	padding: 112px 0 116px;
	background: #fff;
}

.genomos-works .genomos-works__inner {
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}


/* Heading
--------------------------------------------------------- */

.genomos-works__header {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
	align-items: end;
	gap: clamp(54px, 8vw, 110px);
	margin-bottom: 68px;
}

.genomos-works__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-works__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-works__heading h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -.03em;
	text-align: left;
}

#top-lp .genomos-works__lead {
	margin: 0 0 7px;
	color: #53636e;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}


/* Works grid
--------------------------------------------------------- */

.genomos-works__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 58px 28px;
}

.genomos-works__item {
	min-width: 0;
	margin: 0;
}

.genomos-works__image {
	position: relative;
	overflow: hidden;
	border: 1px solid #d6dfe4;
	background: #edf2f4;
}

.genomos-works__image::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: rgba(23, 63, 96, .08);
}

.genomos-works__image img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: top center;
}

.genomos-works__item figcaption {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 14px;
	padding: 20px 2px 22px;
	border-bottom: 1px solid #d6dfe4;
}

.genomos-works__number {
	padding-top: 5px;
	color: #2d82ad;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	line-height: 1;
}

#top-lp .genomos-works__meta h3 {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: #173f60;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .01em;
}

#top-lp .genomos-works__meta p {
	margin: 5px 0 0;
	color: #71818b;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: .04em;
	word-break: break-all;
}

#top-lp .genomos-works__notice {
	margin: 32px 0 0;
	color: #7b8992;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: .02em;
	text-align: right;
}


/* Tablet
--------------------------------------------------------- */

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

	.genomos-works {
		padding: 88px 0 94px;
	}

	.genomos-works .genomos-works__inner {
		padding-right: 28px;
		padding-left: 28px;
	}

	.genomos-works__header {
		grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
		gap: 44px;
		margin-bottom: 56px;
	}

	.genomos-works__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px 26px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-works {
		padding: 70px 0 76px;
	}

	.genomos-works .genomos-works__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-works__header {
		display: block;
		margin-bottom: 44px;
	}

	.genomos-works__eyebrow {
		gap: 9px;
		margin-bottom: 18px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-works__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-works__heading h2 {
		font-size: clamp(28px, 8.5vw, 36px);
		line-height: 1.5;
	}

	#top-lp .genomos-works__lead {
		margin-top: 24px;
		font-size: 13px;
		line-height: 1.9;
	}

	.genomos-works__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.genomos-works__item figcaption {
		padding-top: 18px;
	}

	#top-lp .genomos-works__meta h3 {
		font-size: 15px;
	}

	#top-lp .genomos-works__notice {
		margin-top: 28px;
		text-align: left;
	}

}


/* =========================================================
   Genomos Top / Nationwide
   全国47都道府県への直接対応
========================================================= */

.genomos-nationwide {
	padding: 112px 0 116px;
	background: #f4f7f8;
}

.genomos-nationwide .genomos-nationwide__inner {
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}

.genomos-nationwide__main {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
	align-items: stretch;
	gap: clamp(58px, 8vw, 108px);
}


/* Copy
--------------------------------------------------------- */

.genomos-nationwide__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-nationwide__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-nationwide__content h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(34px, 3.8vw, 50px);
	font-weight: 600;
	line-height: 1.48;
	letter-spacing: -.03em;
	text-align: left;
}

.genomos-nationwide__text {
	max-width: 640px;
	margin-top: 36px;
}

#top-lp .genomos-nationwide__text p {
	margin: 0;
	color: #46545e;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}

#top-lp .genomos-nationwide__text p + p {
	margin-top: 16px;
}

.genomos-nationwide__link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 20px;
	align-items: center;
	gap: 20px;
	max-width: 500px;
	margin-top: 40px;
	padding: 20px 4px;
	border-top: 1px solid #cfd9de;
	border-bottom: 1px solid #cfd9de;
	color: #173f60;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .02em;
	text-decoration: none;
	transition:
		padding .2s ease,
		background-color .2s ease,
		color .2s ease;
}

.genomos-nationwide__arrow {
	font-size: 18px;
	line-height: 1;
	transition: transform .2s ease;
}

.genomos-nationwide__link:hover {
	padding-right: 16px;
	padding-left: 16px;
	background: #173f60;
	color: #fff;
}

.genomos-nationwide__link:hover .genomos-nationwide__arrow {
	transform: translateX(3px);
}

.genomos-nationwide__link:focus-visible {
	outline: 2px solid #2d82ad;
	outline-offset: 3px;
}


/* Photograph
--------------------------------------------------------- */

.genomos-nationwide__visual {
	position: relative;
	min-height: 500px;
	margin: 0;
	box-sizing: border-box;
}

.genomos-nationwide__visual::before {
	content: "";
	position: absolute;
	top: 20px;
	right: -20px;
	bottom: -20px;
	left: 20px;
	border: 1px solid rgba(23, 63, 96, .2);
}

.genomos-nationwide__visual img {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
	object-position: center;
}


/* Steps
--------------------------------------------------------- */

.genomos-nationwide__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 76px 0 0;
	padding: 0;
	border-top: 1px solid #cfd9de;
	border-bottom: 1px solid #cfd9de;
	list-style: none;
}

.genomos-nationwide__steps li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 16px;
	margin: 0;
	padding: 30px 28px;
	box-sizing: border-box;
}

.genomos-nationwide__steps li + li {
	border-left: 1px solid #cfd9de;
}

.genomos-nationwide__step-number {
	padding-top: 4px;
	color: #2d82ad;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	line-height: 1;
}

.genomos-nationwide__steps small,
.genomos-nationwide__steps strong {
	display: block;
}

.genomos-nationwide__steps small {
	margin-bottom: 9px;
	color: #71828d;
	font-size: 9px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .16em;
}

.genomos-nationwide__steps strong {
	color: #173f60;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: .01em;
}


/* Tablet
--------------------------------------------------------- */

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

	.genomos-nationwide {
		padding: 88px 0 94px;
	}

	.genomos-nationwide .genomos-nationwide__inner {
		padding-right: 28px;
		padding-left: 28px;
	}

	.genomos-nationwide__main {
		grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
		gap: 46px;
	}

	.genomos-nationwide__visual {
		min-height: 460px;
	}

	.genomos-nationwide__visual img {
		min-height: 460px;
	}

	.genomos-nationwide__steps {
		margin-top: 60px;
	}

	.genomos-nationwide__steps li {
		grid-template-columns: 28px minmax(0, 1fr);
		gap: 12px;
		padding: 26px 18px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-nationwide {
		padding: 70px 0 76px;
	}

	.genomos-nationwide .genomos-nationwide__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-nationwide__main {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.genomos-nationwide__eyebrow {
		gap: 9px;
		margin-bottom: 18px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-nationwide__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-nationwide__content h2 {
		font-size: clamp(28px, 8.5vw, 36px);
		line-height: 1.5;
	}

	.genomos-nationwide__text {
		margin-top: 26px;
	}

	#top-lp .genomos-nationwide__text p {
		font-size: 13px;
		line-height: 1.9;
	}

	.genomos-nationwide__link {
		margin-top: 32px;
		font-size: 13px;
	}

	.genomos-nationwide__visual {
		min-height: 0;
		margin-right: 14px;
	}

	.genomos-nationwide__visual::before {
		top: 14px;
		right: -14px;
		bottom: -14px;
		left: 14px;
	}

	.genomos-nationwide__visual img {
		height: auto;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.genomos-nationwide__steps {
		grid-template-columns: 1fr;
		margin-top: 48px;
	}

	.genomos-nationwide__steps li {
		padding: 24px 4px;
	}

	.genomos-nationwide__steps li + li {
		border-top: 1px solid #cfd9de;
		border-left: 0;
	}

}


/* =========================================================
   Genomos Top / FAQ
   制作前によくいただくご質問
========================================================= */

.genomos-faq {
	padding: 112px 0 116px;
	background: #fff;
}

.genomos-faq .genomos-faq__inner {
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}


/* Heading
--------------------------------------------------------- */

.genomos-faq__header {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
	align-items: end;
	gap: clamp(54px, 8vw, 110px);
	margin-bottom: 68px;
}

.genomos-faq__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-faq__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-faq__heading h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -.03em;
	text-align: left;
}

#top-lp .genomos-faq__lead {
	margin: 0 0 7px;
	color: #53636e;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}


/* Accordion
--------------------------------------------------------- */

.genomos-faq__list {
	border-top: 1px solid #cfd9de;
}

.genomos-faq__item {
	margin: 0;
	border-bottom: 1px solid #cfd9de;
}

.genomos-faq__item summary {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr) 30px;
	align-items: center;
	gap: 18px;
	padding: 29px 6px;
	color: #173f60;
	cursor: pointer;
	list-style: none;
}

.genomos-faq__item summary::-webkit-details-marker {
	display: none;
}

.genomos-faq__item summary::marker {
	content: "";
}

.genomos-faq__item summary:focus-visible {
	outline: 2px solid #2d82ad;
	outline-offset: 3px;
}

.genomos-faq__number,
.genomos-faq__answer-label {
	color: #2d82ad;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	line-height: 1;
	letter-spacing: .03em;
}

.genomos-faq__question {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: .01em;
}

.genomos-faq__icon {
	display: block;
	position: relative;
	width: 22px;
	height: 22px;
}

.genomos-faq__icon::before,
.genomos-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 1px;
	background: #2d82ad;
	transform: translate(-50%, -50%);
	transition: opacity .2s ease;
}

.genomos-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.genomos-faq__item[open] .genomos-faq__icon::after {
	opacity: 0;
}

.genomos-faq__answer {
	display: grid;
	grid-template-columns: 74px minmax(0, 1fr);
	gap: 18px;
	padding: 4px 66px 34px 6px;
}

.genomos-faq__answer-label {
	padding-top: 8px;
}

#top-lp .genomos-faq__answer p {
	margin: 0;
	color: #46545e;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}

#top-lp .genomos-faq__answer .genomos-faq__note {
	margin-top: 10px;
	color: #71808a;
	font-size: 11px;
	line-height: 1.8;
}


/* More link
--------------------------------------------------------- */

.genomos-faq__more {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 20px;
	align-items: center;
	gap: 20px;
	width: min(500px, 100%);
	margin: 38px 0 0 auto;
	padding: 19px 4px;
	border-bottom: 1px solid #cfd9de;
	color: #173f60;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .02em;
	text-decoration: none;
	transition:
		padding .2s ease,
		background-color .2s ease,
		color .2s ease;
}

.genomos-faq__more span:last-child {
	font-size: 18px;
	line-height: 1;
	transition: transform .2s ease;
}

.genomos-faq__more:hover {
	padding-right: 16px;
	padding-left: 16px;
	background: #173f60;
	color: #fff;
}

.genomos-faq__more:hover span:last-child {
	transform: translateX(3px);
}

.genomos-faq__more:focus-visible {
	outline: 2px solid #2d82ad;
	outline-offset: 3px;
}


/* Tablet
--------------------------------------------------------- */

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

	.genomos-faq {
		padding: 88px 0 94px;
	}

	.genomos-faq .genomos-faq__inner {
		padding-right: 28px;
		padding-left: 28px;
	}

	.genomos-faq__header {
		grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
		gap: 44px;
		margin-bottom: 56px;
	}

	.genomos-faq__item summary {
		grid-template-columns: 64px minmax(0, 1fr) 28px;
	}

	.genomos-faq__answer {
		grid-template-columns: 64px minmax(0, 1fr);
		padding-right: 58px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-faq {
		padding: 70px 0 76px;
	}

	.genomos-faq .genomos-faq__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-faq__header {
		display: block;
		margin-bottom: 44px;
	}

	.genomos-faq__eyebrow {
		gap: 9px;
		margin-bottom: 18px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-faq__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-faq__heading h2 {
		font-size: clamp(28px, 8.5vw, 36px);
		line-height: 1.5;
	}

	#top-lp .genomos-faq__lead {
		margin-top: 24px;
		font-size: 13px;
		line-height: 1.9;
	}

	.genomos-faq__item summary {
		grid-template-columns: 46px minmax(0, 1fr) 24px;
		gap: 10px;
		padding: 23px 0;
	}

	.genomos-faq__number,
	.genomos-faq__answer-label {
		font-size: 12px;
	}

	.genomos-faq__question {
		font-size: 15px;
		line-height: 1.65;
	}

	.genomos-faq__icon {
		width: 20px;
		height: 20px;
	}

	.genomos-faq__answer {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 10px;
		padding: 0 0 27px;
	}

	.genomos-faq__answer-label {
		padding-top: 7px;
	}

	#top-lp .genomos-faq__answer p {
		font-size: 13px;
		line-height: 1.9;
	}

	.genomos-faq__more {
		margin-top: 30px;
		font-size: 13px;
	}

}


/* =========================================================
   Genomos Top / Company
   会社概要
========================================================= */

.genomos-company {
	padding: 112px 0 120px;
	background: #f4f7f8;
}

.genomos-company .genomos-company__inner {
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}


/* Heading
--------------------------------------------------------- */

.genomos-company__header {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
	align-items: end;
	gap: clamp(54px, 8vw, 110px);
	margin-bottom: 68px;
}

.genomos-company__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-company__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-company__heading h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -.03em;
	text-align: left;
}

#top-lp .genomos-company__lead {
	margin: 0 0 7px;
	color: #53636e;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}


/* Company information
--------------------------------------------------------- */

.genomos-company__body {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
	align-items: stretch;
	gap: clamp(46px, 6vw, 78px);
}

.genomos-company__table-wrap {
	min-width: 0;
}

.genomos-company__table {
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: collapse;
	background: transparent;
}

.genomos-company__table caption {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.genomos-company__table tr {
	border-top: 1px solid #cfd9de;
}

.genomos-company__table tr:last-child {
	border-bottom: 1px solid #cfd9de;
}

#top-lp .genomos-company__table th,
#top-lp .genomos-company__table td {
	padding: 20px 8px;
	border: 0;
	background: transparent;
	font-size: 13px;
	line-height: 1.85;
	letter-spacing: .02em;
	text-align: left;
	vertical-align: top;
}

#top-lp .genomos-company__table th {
	width: 160px;
	padding-left: 2px;
	color: #173f60;
	font-weight: 600;
}

#top-lp .genomos-company__table th small {
	color: #71818b;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.5;
}

#top-lp .genomos-company__table td {
	color: #46545e;
	font-weight: 400;
}


/* Office photograph
--------------------------------------------------------- */

.genomos-company__media {
	position: relative;
	min-height: 620px;
	margin: 0 20px 20px 0;
}

.genomos-company__media::before {
	content: "";
	position: absolute;
	top: 20px;
	right: -20px;
	bottom: -20px;
	left: 20px;
	border: 1px solid rgba(23, 63, 96, .2);
}

.genomos-company__media img {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
	object-position: center;
}


/* Tablet
--------------------------------------------------------- */

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

	.genomos-company {
		padding: 88px 0 96px;
	}

	.genomos-company .genomos-company__inner {
		padding-right: 28px;
		padding-left: 28px;
	}

	.genomos-company__header {
		grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
		gap: 44px;
		margin-bottom: 56px;
	}

	.genomos-company__body {
		grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
		gap: 38px;
	}

	#top-lp .genomos-company__table th {
		width: 126px;
	}

	.genomos-company__media,
	.genomos-company__media img {
		min-height: 580px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-company {
		padding: 70px 0 76px;
	}

	.genomos-company .genomos-company__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-company__header {
		display: block;
		margin-bottom: 44px;
	}

	.genomos-company__eyebrow {
		gap: 9px;
		margin-bottom: 18px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-company__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-company__heading h2 {
		font-size: clamp(28px, 8.5vw, 36px);
		line-height: 1.5;
	}

	#top-lp .genomos-company__lead {
		margin-top: 24px;
		font-size: 13px;
		line-height: 1.9;
	}

	.genomos-company__body {
		display: flex;
		flex-direction: column;
		gap: 48px;
	}

	.genomos-company__media {
		order: 1;
		min-height: 0;
		margin: 0 14px 14px 0;
	}

	.genomos-company__media::before {
		top: 14px;
		right: -14px;
		bottom: -14px;
		left: 14px;
	}

	.genomos-company__media img {
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.genomos-company__table-wrap {
		order: 2;
	}

	#top-lp .genomos-company__table th,
	#top-lp .genomos-company__table td {
		padding-top: 17px;
		padding-bottom: 17px;
		font-size: 12px;
		line-height: 1.8;
	}

	#top-lp .genomos-company__table th {
		width: 104px;
	}

	#top-lp .genomos-company__table th small {
		font-size: 9px;
	}

}


/* =========================================================
   Genomos Top / News & Column
   お知らせ・コラム
========================================================= */

.genomos-news {
	padding: 112px 0 120px;
	background: #fff;
}

.genomos-news .genomos-news__inner {
	max-width: 1200px;
	padding-right: 32px;
	padding-left: 32px;
	box-sizing: border-box;
}


/* Heading
--------------------------------------------------------- */

.genomos-news__header {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
	align-items: end;
	gap: clamp(54px, 8vw, 110px);
	margin-bottom: 68px;
}

.genomos-news__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-news__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #2d82ad;
}

#top-lp .genomos-news__heading h2 {
	margin: 0;
	padding: 0;
	color: #173f60;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -.03em;
	text-align: left;
}

#top-lp .genomos-news__lead {
	margin: 0 0 7px;
	color: #53636e;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: .02em;
}


/* Lists
--------------------------------------------------------- */

.genomos-news__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid #cfd9de;
	border-bottom: 1px solid #cfd9de;
}

.genomos-news__column {
	display: flex;
	min-width: 0;
	padding: 44px 50px 38px 0;
	flex-direction: column;
}

.genomos-news__column + .genomos-news__column {
	padding-right: 0;
	padding-left: 50px;
	border-left: 1px solid #cfd9de;
}

.genomos-news__column-head {
	margin-bottom: 23px;
}

#top-lp .genomos-news__column-head h3 {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #173f60;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .02em;
}

.genomos-news__list {
	border-top: 1px solid #e1e7ea;
}

.genomos-news__item {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 21px 0;
	border-bottom: 1px solid #e1e7ea;
}

.genomos-news__item time {
	padding-top: 3px;
	color: #75848d;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: .06em;
}

#top-lp .genomos-news__item a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 16px;
	gap: 16px;
	align-items: start;
	color: #173f60;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.85;
	letter-spacing: .01em;
	text-decoration: none;
	transition: color .2s ease;
}

#top-lp .genomos-news__item a:hover {
	color: #2d82ad;
}

.genomos-news__arrow {
	padding-top: 1px;
	color: #2d82ad;
	font-size: 14px;
	transition: transform .2s ease;
}

.genomos-news__item a:hover .genomos-news__arrow {
	transform: translateX(3px);
}

#top-lp .genomos-news__more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-top: auto;
	padding: 24px 0 0;
	color: #173f60;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .04em;
	text-decoration: none;
	box-sizing: border-box;
}

#top-lp .genomos-news__more span:last-child {
	color: #2d82ad;
	font-size: 15px;
	transition: transform .2s ease;
}

#top-lp .genomos-news__more:hover {
	color: #2d82ad;
}

#top-lp .genomos-news__more:hover span:last-child {
	transform: translateX(3px);
}


/* Tablet
--------------------------------------------------------- */

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

	.genomos-news {
		padding: 88px 0 96px;
	}

	.genomos-news .genomos-news__inner {
		padding-right: 28px;
		padding-left: 28px;
	}

	.genomos-news__header {
		grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
		gap: 44px;
		margin-bottom: 56px;
	}

	.genomos-news__column {
		padding-right: 32px;
	}

	.genomos-news__column + .genomos-news__column {
		padding-left: 32px;
	}

	.genomos-news__item {
		grid-template-columns: 1fr;
		gap: 4px;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	.genomos-news {
		padding: 70px 0 76px;
	}

	.genomos-news .genomos-news__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.genomos-news__header {
		display: block;
		margin-bottom: 44px;
	}

	.genomos-news__eyebrow {
		gap: 9px;
		margin-bottom: 18px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-news__eyebrow span {
		width: 25px;
	}

	#top-lp .genomos-news__heading h2 {
		font-size: clamp(28px, 8.5vw, 36px);
		line-height: 1.5;
	}

	#top-lp .genomos-news__lead {
		margin-top: 24px;
		font-size: 13px;
		line-height: 1.9;
	}

	.genomos-news__columns {
		display: block;
	}

	.genomos-news__column,
	.genomos-news__column + .genomos-news__column {
		padding: 35px 0 32px;
		border-left: 0;
	}

	.genomos-news__column + .genomos-news__column {
		border-top: 1px solid #cfd9de;
	}

	.genomos-news__column-head {
		margin-bottom: 18px;
	}

	#top-lp .genomos-news__column-head h3 {
		font-size: 18px;
	}

	.genomos-news__item {
		padding: 17px 0;
	}

	#top-lp .genomos-news__item a {
		font-size: 13px;
		line-height: 1.8;
	}

	#top-lp .genomos-news__more {
		padding-top: 21px;
	}

}


/* =========================================================
   Genomos Header
   シンプル・上品・行政書士専門の制作会社らしいヘッダー
========================================================= */

/* Brand area
--------------------------------------------------------- */

.naviheader #header-title {
	position: relative;
	z-index: 102;
	border-bottom: 1px solid #e7ebef;
	background: rgba(255, 255, 255, .98);
}

.naviheader #header-title .inner {
	max-width: 1280px;
	min-height: 82px;
	padding: 14px 0px;
	box-sizing: border-box;
}

.naviheader .sitetitle {
	min-width: 0;
}

.naviheader .logo-l {
	flex: 0 0 auto;
	margin-right: 14px;
}

.naviheader .logo-l img {
	display: block;
	width: 54px;
	height: 54px;
	object-fit: contain;
}

.naviheader .logo-r,
.naviheader .logo-r > a {
	min-width: 0;
}

.naviheader .logo-r > a {
	display: flex;
	flex-direction: column;
	gap: 5px;
	text-decoration: none;
}

/* 会社名をブランド名として先に、大きく見せる */
.naviheader #header-title .subofficename {
	order: -1;
	color: #173f60;
	font-size: clamp(21px, 2vw, 28px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: .015em;
}

/* catch_copy は専門領域を伝えるタグラインとして扱う */
.naviheader #header-title .officename h1,
.naviheader #header-title .officename .hx {
	margin: 0;
	padding: 0;
	color: #60717f;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: .07em;
}


/* Contact actions
--------------------------------------------------------- */

.naviheader .header-button {
	flex: 0 0 auto;
	align-items: center;
	gap: 24px;
	margin-left: 32px;
}

.naviheader .hb-left {
	margin: 0;
	padding: 0;
	text-align: right;
}

.naviheader .hb-number {
	color: #173f60;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: .02em;
}

.naviheader .hb-info {
	padding-top: 5px;
	color: #71808c;
	font-size: 11px;
	line-height: 1.4;
	letter-spacing: .04em;
}

.naviheader .hb-right .simple-button {
	margin: 0;
	border: 1px solid #173f60;
	border-radius: 2px;
	background: transparent;
	font-size: 14px;
	transition: background-color .2s ease;
}

.naviheader .hb-right .simple-button:hover {
	background: #173f60;
	opacity: 1;
}

.naviheader .hb-right .simple-button a {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 12px 18px;
	color: #173f60;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .05em;
	transition: color .2s ease;
}

.naviheader .hb-right .simple-button a::after {
	content: "\2192";
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	transition: transform .2s ease;
}

.naviheader .hb-right .simple-button .ffx-icon {
	display: none;
}

.naviheader .hb-right .simple-button:hover a {
	color: #fff;
}

.naviheader .hb-right .simple-button:hover a::after {
	transform: translateX(3px);
}


/* Global navigation
--------------------------------------------------------- */

.naviheader .header-menu {
	border-bottom: 1px solid #eef1f3;
	background: rgba(255, 255, 255, .98);
}

.naviheader .header-menu.is-stuck {
	box-shadow: 0 8px 24px rgba(23, 63, 96, .09);
}

.naviheader nav.menu .inner {
	max-width: 1200px;
	padding: 0 32px;
	box-sizing: border-box;
}

.naviheader nav.menu ul {
	justify-content: flex-end;
	gap: clamp(22px, 2.8vw, 42px);
}

.naviheader nav.menu ul li {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .035em;
}

.naviheader nav.menu ul li a {
	position: relative;
	padding: 16px 0 15px;
	color: #3b4650;
	line-height: 1.45;
	transition: color .2s ease;
}

.naviheader nav.menu ul li a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 9px;
	left: 0;
	height: 1px;
	background: #173f60;
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform .25s ease;
}

.naviheader nav.menu ul li a:hover,
.naviheader nav.menu ul li.current-menu-item > a {
	color: #173f60;
}

.naviheader nav.menu ul li a:hover::after,
.naviheader nav.menu ul li.current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left center;
}


/* Narrow desktop
--------------------------------------------------------- */

@media screen and (max-width: 1100px) and (min-width: 921px) {

	.naviheader #header-title .inner,
	.naviheader nav.menu .inner {
		padding-right: 24px;
		padding-left: 24px;
	}

	.naviheader .header-button {
		gap: 16px;
		margin-left: 24px;
	}

	.naviheader .hb-number {
		font-size: 18px;
	}

	.naviheader nav.menu ul {
		gap: 20px;
	}

	.naviheader nav.menu ul li {
		font-size: 12px;
	}

}


/* Tablet / Smartphone
--------------------------------------------------------- */

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

	.naviheader #header-title .inner {
		min-height: 72px;
		padding: 11px 76px 11px 20px;
	}

	.naviheader .sitetitle {
		max-width: 100%;
	}

	.naviheader .logo-l {
		margin-right: 11px;
	}

	.naviheader .logo-l img {
		width: 48px;
		height: 48px;
	}

	.naviheader #header-title .subofficename {
		font-size: clamp(18px, 4.8vw, 22px);
	}

	.naviheader #header-title .officename h1,
	.naviheader #header-title .officename .hx {
		overflow: hidden;
		max-width: 56vw;
		font-size: 10px;
		letter-spacing: .045em;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	/* 高さを確保して、追尾時のスペーサー計算も安定させる */
	.naviheader .header-menu {
		position: relative;
		z-index: 103;
		min-height: 64px;
		margin-top: -64px;
		border-bottom: 0;
		background: transparent;
		pointer-events: none;
	}

	.naviheader .header-menu.is-stuck {
		position: fixed;
		margin-top: 0;
		background: rgba(255, 255, 255, .98);
		box-shadow: 0 8px 24px rgba(23, 63, 96, .09);
	}

	.naviheader #menubtn {
		top: 10px;
		right: 16px;
		width: 44px;
		height: 44px;
		padding: 0;
		border: 1px solid #dce3e8;
		border-radius: 2px;
		background: #fff;
		color: #173f60;
		line-height: 1;
		pointer-events: auto;
	}

	.naviheader #menubtn svg {
		width: 24px;
		height: 24px;
		font-size: 24px;
	}

	.naviheader nav.menu.is-open {
		position: absolute;
		top: 64px;
		left: 0;
		width: 100%;
		border-top: 1px solid #eef1f3;
		background: #fff;
		box-shadow: 0 12px 24px rgba(23, 63, 96, .1);
		pointer-events: auto;
	}

	.naviheader nav.menu .inner {
		padding: 8px 20px 14px;
	}

	.naviheader nav.menu ul {
		gap: 0;
	}

	.naviheader nav.menu ul li {
		padding: 0;
		border-bottom: 1px solid #edf0f2;
		font-size: 13px;
	}

	.naviheader nav.menu ul li:last-child {
		border-bottom: 0;
	}

	.naviheader nav.menu ul li a {
		padding: 14px 4px;
		text-align: left;
	}

	.naviheader nav.menu ul li a::after {
		display: none;
	}

}


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

	.naviheader #header-title .inner {
		padding-left: 14px;
	}

	.naviheader .logo-l {
		margin-right: 9px;
	}

	.naviheader .logo-l img {
		width: 42px;
		height: 42px;
	}

	.naviheader #header-title .subofficename {
		font-size: 17px;
	}

	.naviheader #header-title .officename h1,
	.naviheader #header-title .officename .hx {
		max-width: 52vw;
		font-size: 9px;
	}

}


/* =========================================================
   Genomos Hero
   コピーを主役にした顧客視点のファーストビュー
========================================================= */

#header-text {
	display: block;
	position: relative;
	overflow: hidden;
	min-height: 620px;
	padding: 0;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, .82) 0%, rgba(255, 255, 255, 0) 48%),
		#f1f4f5;
	font-weight: 400;
}

#header-text::before {
	content: "";
	position: absolute;
	top: -180px;
	left: -160px;
	width: 460px;
	height: 460px;
	border: 1px solid rgba(23, 63, 96, .08);
	border-radius: 50%;
	pointer-events: none;
}

#header-text::after {
	content: "";
	position: absolute;
	right: -110px;
	bottom: -240px;
	width: 520px;
	height: 520px;
	border: 1px solid rgba(23, 63, 96, .07);
	border-radius: 50%;
	pointer-events: none;
}

#header-text .genomos-hero__inner {
	display: grid;
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
	align-items: center;
	gap: clamp(48px, 6vw, 76px);
	max-width: 1200px;
	min-height: 620px;
	padding: 76px 32px 84px;
	box-sizing: border-box;
}


/* Hero copy
--------------------------------------------------------- */

.genomos-hero__content {
	min-width: 0;
}

.genomos-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #687985;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .18em;
}

.genomos-hero__eyebrow span {
	display: block;
	width: 36px;
	height: 1px;
	background: #3b8db8;
}

.genomos-hero__title {
	color: #173f60;
	font-size: clamp(48px, 4.7vw, 62px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -.045em;
}

.genomos-hero__title > span {
	display: block;
	width: max-content;
	max-width: none;
	white-space: nowrap;
}

.genomos-hero__title .genomos-hero__accent {
	color: #2d82ad;
}

#header-text .genomos-hero__lead {
	max-width: 650px;
	margin: 34px 0 0;
	color: #3c4851;
	font-size: clamp(16px, 1.45vw, 18px);
	font-weight: 400;
	line-height: 2;
	letter-spacing: .025em;
	text-align: left;
}


/* Hero photograph
--------------------------------------------------------- */

.genomos-hero__visual {
	position: relative;
	width: 100%;
	max-width: 410px;
	margin-left: auto;
	padding: 0;
}

.genomos-hero__visual::before {
	content: "";
	position: absolute;
	top: 20px;
	right: -20px;
	bottom: -20px;
	left: 20px;
	border: 1px solid rgba(23, 63, 96, .22);
}

.genomos-hero__visual img {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
}

/* Tablet
--------------------------------------------------------- */

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

	#header-text,
	#header-text .genomos-hero__inner {
		min-height: 0;
	}

	#header-text .genomos-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
		gap: 38px;
		padding: 72px 28px 78px;
	}

	.genomos-hero__eyebrow {
		margin-bottom: 20px;
	}

	.genomos-hero__title {
		font-size: clamp(36px, 5vw, 44px);
	}

	#header-text .genomos-hero__lead {
		margin-top: 28px;
		font-size: 15px;
		line-height: 1.9;
	}

}


/* Smartphone
--------------------------------------------------------- */

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

	#header-text::before {
		top: -150px;
		left: -260px;
	}

	#header-text::after {
		display: none;
	}

	#header-text .genomos-hero__inner {
		display: block;
		padding: 62px 20px 70px;
	}

	.genomos-hero__eyebrow {
		gap: 9px;
		margin-bottom: 18px;
		font-size: 9px;
		letter-spacing: .14em;
	}

	.genomos-hero__eyebrow span {
		width: 25px;
	}

	.genomos-hero__title {
		font-size: clamp(36px, 11.2vw, 50px);
		line-height: 1.16;
		letter-spacing: -.045em;
	}

	.genomos-hero__title > span {
		max-width: 100%;
		white-space: normal;
	}

	#header-text .genomos-hero__lead {
		margin-top: 27px;
		font-size: 15px;
		line-height: 1.9;
	}

	.genomos-hero__lead-break {
		display: none;
	}

	/* モバイルではコピーをファーストビュー内に収める */
	.genomos-hero__visual {
		display: none;
	}

}


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

	#header-text .genomos-hero__inner {
		padding-right: 16px;
		padding-left: 16px;
	}

	.genomos-hero__title {
		font-size: 34px;
	}

}


/* =========================================================
   Genomos Subpage Hero
   ========================================================= */

#subheader-text.genomos-subhero {
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	background: #f2f5f6;
	background-image: none;
	border-bottom: 1px solid #dfe6e9;
	font-weight: 400;
}

#subheader-text.genomos-subhero::before,
#subheader-text.genomos-subhero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	border: 1px solid rgba(23, 63, 96, .09);
	border-radius: 50%;
}

#subheader-text.genomos-subhero::before {
	width: 520px;
	height: 520px;
	top: -365px;
	left: -170px;
}

#subheader-text.genomos-subhero::after {
	width: 430px;
	height: 430px;
	right: -220px;
	bottom: -335px;
}

#subheader-text .genomos-subhero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 230px;
	align-items: center;
	gap: 70px;
	box-sizing: border-box;
	max-width: 1240px;
	min-height: 340px;
	margin: 0 auto;
	padding: 68px 32px 62px;
}

.genomos-subhero__content {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.genomos-subhero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 25px;
	color: #6d7e8a;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .19em;
}

.genomos-subhero__eyebrow span {
	width: 42px;
	height: 1px;
	background: #2f91bd;
}

#subheader-text .genomos-subhero__title {
	max-width: 900px;
	margin: 0;
	color: #173f60;
	font-size: clamp(40px, 4.4vw, 62px);
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -.035em;
	text-align: left;
}

#subheader-text .genomos-subhero__lead {
	max-width: 760px;
	margin: 24px 0 0;
	color: #53636d;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	text-align: left;
}

.genomos-subhero__decoration {
	position: relative;
	width: 210px;
	height: 210px;
	justify-self: end;
	box-sizing: border-box;
	border: 1px solid rgba(23, 63, 96, .16);
	border-radius: 50%;
}

.genomos-subhero__decoration::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 84px;
	height: 84px;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(47, 145, 189, .32);
	border-radius: 50%;
}

.genomos-subhero__decoration::after {
	content: "";
	position: absolute;
	top: 50%;
	left: -34px;
	width: 278px;
	height: 1px;
	background: rgba(23, 63, 96, .14);
}

.genomos-subhero__decoration span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 7px;
	height: 7px;
	transform: translate(-50%, -50%);
	background: #2f91bd;
	border-radius: 50%;
}

/* ページタイトルはサブヒーロー側に表示するため、本文側の重複見出しを隠す */
body.page:not(.home) #post > .entrytitle {
	display: none;
}

/* 投稿・アーカイブ・検索・404は、ヒーロー側に見出しをまとめる */
body.single #post > .entrytitle,
body.archive #post > .entrytitle,
body.search #post > .entrytitle,
body.error404 #post > .entrytitle,
body.archive #post > .archive-description,
body.error404 #post > .entry > p:first-child {
	display: none;
}

#subheader-text.genomos-subhero--compact .genomos-subhero__inner {
	grid-template-columns: minmax(0, 1fr) 170px;
	gap: 54px;
	min-height: 270px;
	padding-top: 50px;
	padding-bottom: 48px;
}

#subheader-text.genomos-subhero--compact .genomos-subhero__title {
	max-width: 980px;
	font-size: clamp(34px, 3.5vw, 48px);
	line-height: 1.42;
}

#subheader-text.genomos-subhero--compact .genomos-subhero__eyebrow {
	margin-bottom: 19px;
}

#subheader-text.genomos-subhero--compact .genomos-subhero__lead {
	margin-top: 18px;
}

#subheader-text.genomos-subhero--compact .genomos-subhero__decoration {
	width: 150px;
	height: 150px;
}

#subheader-text.genomos-subhero--compact .genomos-subhero__decoration::before {
	width: 60px;
	height: 60px;
}

#subheader-text.genomos-subhero--compact .genomos-subhero__decoration::after {
	left: -24px;
	width: 198px;
}

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

	#subheader-text .genomos-subhero__inner {
		grid-template-columns: minmax(0, 1fr) 170px;
		gap: 42px;
		min-height: 300px;
		padding: 60px 28px 56px;
	}

	.genomos-subhero__decoration {
		width: 160px;
		height: 160px;
	}

	.genomos-subhero__decoration::after {
		left: -25px;
		width: 210px;
	}

	#subheader-text.genomos-subhero--compact .genomos-subhero__inner {
		min-height: 250px;
		padding-top: 48px;
		padding-bottom: 46px;
	}

}

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

	#subheader-text.genomos-subhero::before {
		top: -300px;
		left: -300px;
	}

	#subheader-text.genomos-subhero::after {
		display: none;
	}

	#subheader-text .genomos-subhero__inner {
		display: block;
		min-height: 0;
		padding: 52px 20px 50px;
	}

	.genomos-subhero__eyebrow {
		gap: 10px;
		margin-bottom: 18px;
		font-size: 10px;
		letter-spacing: .16em;
	}

	.genomos-subhero__eyebrow span {
		width: 28px;
	}

	#subheader-text .genomos-subhero__title {
		font-size: clamp(32px, 9.4vw, 42px);
		line-height: 1.4;
		letter-spacing: -.04em;
	}

	#subheader-text .genomos-subhero__lead {
		margin-top: 19px;
		font-size: 14px;
		line-height: 1.9;
	}

	.genomos-subhero__decoration {
		display: none;
	}

	#subheader-text.genomos-subhero--compact .genomos-subhero__inner {
		padding-top: 42px;
		padding-bottom: 40px;
	}

	#subheader-text.genomos-subhero--compact .genomos-subhero__title {
		font-size: clamp(28px, 8.2vw, 36px);
		line-height: 1.45;
	}

}


/* =========================================================
   Entry plan page
   page-id-4301 only
========================================================= */
body.page-id-4301 .entry-plan-page {
	--ep-navy: #173f60;
	--ep-blue: #2f91bd;
	--ep-text: #465660;
	--ep-muted: #6c7d88;
	--ep-line: #d9e3e8;
	--ep-pale: #f2f6f7;
	--ep-white: #fff;
	color: var(--ep-text);
	font-size: 16px;
	line-height: 2;
}

body.page-id-4301 .entry-plan-page,
body.page-id-4301 .entry-plan-page * {
	box-sizing: border-box;
}

body.page-id-4301 .entry-plan-page .ep-section {
	margin: 0 0 84px;
}

body.page-id-4301 .entry-plan-page .ep-section:last-child {
	margin-bottom: 0;
}

body.page-id-4301 .entry-plan-page p,
body.page-id-4301 .entry-plan-page ul,
body.page-id-4301 .entry-plan-page ol {
	margin-top: 0;
}

body.page-id-4301 .entry-plan-page p:last-child,
body.page-id-4301 .entry-plan-page ul:last-child,
body.page-id-4301 .entry-plan-page ol:last-child {
	margin-bottom: 0;
}

body.page-id-4301 .entry-plan-page .ep-section__header {
	margin-bottom: 32px;
}

body.page-id-4301 .entry-plan-page .ep-section__header--center {
	max-width: 720px;
	margin-right: auto;
	margin-bottom: 38px;
	margin-left: auto;
	text-align: center;
}

body.page-id-4301 .entry-plan-page .ep-eyebrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 14px;
	color: var(--ep-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .18em;
}

body.page-id-4301 .entry-plan-page .ep-eyebrow::before {
	display: block;
	width: 38px;
	height: 1px;
	background: var(--ep-blue);
	content: "";
}

body.page-id-4301 .entry-plan-page .ep-section__header--center .ep-eyebrow {
	justify-content: center;
}

body.page-id-4301 .entry-plan-page .ep-section__header h2,
body.page-id-4301 .entry-plan-page .ep-consultation-panel h2,
body.page-id-4301 .entry-plan-page .ep-area-card h2 {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ep-navy);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: -.03em;
}

body.page-id-4301 .entry-plan-page .ep-section__header h2::before,
body.page-id-4301 .entry-plan-page .ep-consultation-panel h2::before,
body.page-id-4301 .entry-plan-page .ep-area-card h2::before {
	display: none;
	content: none;
}

body.page-id-4301 .entry-plan-page .ep-lead {
	margin: 20px auto 0;
	color: var(--ep-text);
	font-size: 16px;
	line-height: 2;
}

body.page-id-4301 .entry-plan-page mark {
	padding: 0 .08em .08em;
	background: linear-gradient(transparent 58%, rgba(89, 177, 214, .28) 58%);
	color: inherit;
}

/* Concerns */
body.page-id-4301 .entry-plan-page .ep-check-panel {
	padding: 12px 34px;
	border-top: 1px solid var(--ep-line);
	border-bottom: 1px solid var(--ep-line);
	background: var(--ep-white);
}

body.page-id-4301 .entry-plan-page .ep-check-list,
body.page-id-4301 .entry-plan-page .ep-mini-check-list,
body.page-id-4301 .entry-plan-page .ep-question-list,
body.page-id-4301 .entry-plan-page .ep-simple-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.page-id-4301 .entry-plan-page .ep-check-list li {
	position: relative;
	margin: 0;
	padding: 19px 10px 19px 38px;
	border-bottom: 1px solid #e7edef;
	line-height: 1.8;
}

body.page-id-4301 .entry-plan-page .ep-check-list li:last-child {
	border-bottom: 0;
}

body.page-id-4301 .entry-plan-page .ep-check-list li::before {
	position: absolute;
	top: 24px;
	left: 4px;
	width: 16px;
	height: 9px;
	border-bottom: 2px solid var(--ep-blue);
	border-left: 2px solid var(--ep-blue);
	transform: rotate(-45deg);
	content: "";
}

body.page-id-4301 .entry-plan-page .ep-section__closing {
	margin: 22px 0 0;
	color: var(--ep-muted);
	text-align: right;
}

/* Why it stalls */
body.page-id-4301 .entry-plan-page .ep-reason-panel {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: 0;
	border: 1px solid var(--ep-line);
	background: var(--ep-pale);
}

body.page-id-4301 .entry-plan-page .ep-reason-list {
	margin: 0;
	padding: 30px 34px 30px 56px;
	border-right: 1px solid var(--ep-line);
}

body.page-id-4301 .entry-plan-page .ep-reason-list li {
	margin: 0 0 13px;
	padding-left: 4px;
	line-height: 1.8;
}

body.page-id-4301 .entry-plan-page .ep-reason-list li:last-child {
	margin-bottom: 0;
}

body.page-id-4301 .entry-plan-page .ep-reason-list li::marker {
	color: var(--ep-blue);
}

body.page-id-4301 .entry-plan-page .ep-reason-panel__text {
	padding: 30px 34px;
}

body.page-id-4301 .entry-plan-page .ep-reason-panel__text p {
	margin-bottom: 14px;
}

/* Plan and prices */
body.page-id-4301 .entry-plan-page .ep-price-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

body.page-id-4301 .entry-plan-page .ep-price-card {
	position: relative;
	padding: 34px 32px;
	border: 1px solid var(--ep-line);
	background: var(--ep-white);
	box-shadow: 0 14px 35px rgba(23, 63, 96, .06);
}

body.page-id-4301 .entry-plan-page .ep-price-card::before {
	position: absolute;
	top: -1px;
	left: -1px;
	width: 78px;
	height: 3px;
	background: var(--ep-blue);
	content: "";
}

body.page-id-4301 .entry-plan-page .ep-price-card__label,
body.page-id-4301 .entry-plan-page .ep-support-box__label {
	margin-bottom: 10px;
	color: var(--ep-blue);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .16em;
}

body.page-id-4301 .entry-plan-page .ep-price-card h3,
body.page-id-4301 .entry-plan-page .ep-support-box h3,
body.page-id-4301 .entry-plan-page .ep-feature-card h3,
body.page-id-4301 .entry-plan-page .ep-flow-step h3 {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ep-navy);
	font-weight: 700;
}

body.page-id-4301 .entry-plan-page .ep-price-card h3::after,
body.page-id-4301 .entry-plan-page .ep-support-box h3::after,
body.page-id-4301 .entry-plan-page .ep-feature-card h3::after,
body.page-id-4301 .entry-plan-page .ep-flow-step h3::after {
	display: none;
	content: none;
}

body.page-id-4301 .entry-plan-page .ep-price-card h3 {
	font-size: 20px;
	line-height: 1.55;
}

body.page-id-4301 .entry-plan-page .ep-price-card__price {
	margin: 18px 0 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ep-line);
	color: var(--ep-navy);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

body.page-id-4301 .entry-plan-page .ep-price-card__price span {
	font-size: clamp(39px, 4.3vw, 52px);
	font-weight: 500;
	letter-spacing: -.04em;
}

body.page-id-4301 .entry-plan-page .ep-price-card__price small {
	font-size: 12px;
	font-weight: 400;
}

body.page-id-4301 .entry-plan-page .ep-price-card > p:not(.ep-price-card__label):not(.ep-price-card__price):not(.ep-note) {
	margin-bottom: 16px;
}

body.page-id-4301 .entry-plan-page .ep-note {
	margin: 18px 0 0;
	color: var(--ep-muted);
	font-size: 12px;
	line-height: 1.8;
}

body.page-id-4301 .entry-plan-page .ep-mini-check-list li {
	position: relative;
	margin: 0;
	padding: 7px 0 7px 25px;
	line-height: 1.7;
}

body.page-id-4301 .entry-plan-page .ep-mini-check-list li::before {
	position: absolute;
	top: 17px;
	left: 2px;
	width: 10px;
	height: 6px;
	border-bottom: 1.5px solid var(--ep-blue);
	border-left: 1.5px solid var(--ep-blue);
	transform: rotate(-45deg);
	content: "";
}

body.page-id-4301 .entry-plan-page .ep-contract-note {
	margin-top: 24px;
	padding: 24px 28px;
	border-left: 3px solid var(--ep-blue);
	background: var(--ep-pale);
}

body.page-id-4301 .entry-plan-page .ep-contract-note p {
	margin-bottom: 10px;
}

body.page-id-4301 .entry-plan-page .ep-support-box {
	display: grid;
	grid-template-columns: minmax(190px, .38fr) minmax(0, 1fr);
	margin-top: 32px;
	border: 1px solid var(--ep-line);
	background: var(--ep-white);
}

body.page-id-4301 .entry-plan-page .ep-support-box__heading {
	padding: 34px 28px;
	background: var(--ep-navy);
}

body.page-id-4301 .entry-plan-page .ep-support-box__heading h3 {
	color: #fff;
	font-size: 22px;
	line-height: 1.55;
}

body.page-id-4301 .entry-plan-page .ep-support-box__body {
	padding: 32px 34px;
}

body.page-id-4301 .entry-plan-page .ep-support-box__body > p {
	margin-bottom: 18px;
}

body.page-id-4301 .entry-plan-page .ep-question-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin: 22px 0;
}

body.page-id-4301 .entry-plan-page .ep-question-list li {
	margin: 0;
	padding: 12px 15px;
	background: var(--ep-pale);
	font-size: 14px;
	line-height: 1.65;
}

/* Gentle consultation panel (not an intermediate CTA) */
body.page-id-4301 .entry-plan-page .ep-consultation-panel {
	display: grid;
	grid-template-columns: minmax(230px, .8fr) minmax(0, 1.2fr);
	border-top: 1px solid var(--ep-line);
	border-bottom: 1px solid var(--ep-line);
}

body.page-id-4301 .entry-plan-page .ep-consultation-panel__heading,
body.page-id-4301 .entry-plan-page .ep-consultation-panel__body {
	padding: 36px 32px;
}

body.page-id-4301 .entry-plan-page .ep-consultation-panel__heading {
	border-right: 1px solid var(--ep-line);
}

body.page-id-4301 .entry-plan-page .ep-consultation-panel h2 {
	font-size: clamp(24px, 2.5vw, 32px);
}

body.page-id-4301 .entry-plan-page .ep-simple-list {
	margin-bottom: 22px;
}

body.page-id-4301 .entry-plan-page .ep-simple-list li {
	position: relative;
	margin: 0 0 8px;
	padding-left: 20px;
	font-weight: 700;
	line-height: 1.75;
}

body.page-id-4301 .entry-plan-page .ep-simple-list li::before {
	position: absolute;
	top: .8em;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ep-blue);
	content: "";
}

body.page-id-4301 .entry-plan-page .ep-consultation-panel__body p {
	margin-bottom: 10px;
}

/* Features */
body.page-id-4301 .entry-plan-page .ep-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--ep-line);
	border-bottom: 1px solid var(--ep-line);
}

body.page-id-4301 .entry-plan-page .ep-feature-card {
	position: relative;
	padding: 34px 25px 32px;
	border-right: 1px solid var(--ep-line);
}

body.page-id-4301 .entry-plan-page .ep-feature-card:last-child {
	border-right: 0;
}

body.page-id-4301 .entry-plan-page .ep-feature-card__number {
	display: block;
	margin-bottom: 18px;
	color: var(--ep-blue);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .08em;
}

body.page-id-4301 .entry-plan-page .ep-feature-card h3 {
	min-height: 7em;
	margin-bottom: 20px;
	font-size: 19px;
	line-height: 1.75;
}

body.page-id-4301 .entry-plan-page .ep-feature-card p {
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.85;
}

/* Production process */
body.page-id-4301 .entry-plan-page .ep-flow-list {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.page-id-4301 .entry-plan-page .ep-flow-list::before {
	position: absolute;
	top: 32px;
	bottom: 32px;
	left: 31px;
	width: 1px;
	background: var(--ep-line);
	content: "";
}

body.page-id-4301 .entry-plan-page .ep-flow-step {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 25px;
	width: 100%;
	margin: 0;
	padding: 0 0 18px;
	list-style: none;
}

body.page-id-4301 .entry-plan-page .ep-flow-step:last-child {
	padding-bottom: 0;
}

body.page-id-4301 .entry-plan-page .ep-flow-step__number {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 0 0 64px;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border: 1px solid var(--ep-blue);
	border-radius: 50%;
	background: var(--ep-white);
	color: var(--ep-blue);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
}

body.page-id-4301 .entry-plan-page .ep-flow-step__content {
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	padding: 22px 28px 24px;
	border: 1px solid var(--ep-line);
	background: var(--ep-white);
	word-break: normal;
	overflow-wrap: break-word;
	writing-mode: horizontal-tb;
}

body.page-id-4301 .entry-plan-page .ep-flow-step h3 {
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.6;
}

body.page-id-4301 .entry-plan-page .ep-flow-step__content p {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.85;
}

body.page-id-4301 .entry-plan-page .ep-flow-step__content ul {
	margin: 12px 0;
	padding: 14px 18px 14px 38px;
	background: var(--ep-pale);
}

body.page-id-4301 .entry-plan-page .ep-flow-step__content li {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 1.7;
}

/* Area */
body.page-id-4301 .entry-plan-page .ep-area-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 32px 38px;
	border: 1px solid var(--ep-line);
	background: var(--ep-pale);
}

body.page-id-4301 .entry-plan-page .ep-area-card h2 {
	font-size: 26px;
}

body.page-id-4301 .entry-plan-page .ep-area-card__value {
	margin: 0;
	color: var(--ep-navy);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
}

body.page-id-4301 .entry-plan-page .ep-area-card__value span {
	margin-right: 8px;
	color: var(--ep-blue);
	font-size: 42px;
	font-weight: 400;
}

/* FAQ */
body.page-id-4301 .entry-plan-page .ep-faq-list {
	border-top: 1px solid var(--ep-line);
}

body.page-id-4301 .entry-plan-page .ep-faq-item {
	margin: 0;
	border-bottom: 1px solid var(--ep-line);
}

body.page-id-4301 .entry-plan-page .ep-faq-item summary {
	position: relative;
	display: block;
	padding: 24px 58px 24px 56px;
	color: var(--ep-navy);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.7;
	cursor: pointer;
	list-style: none;
}

body.page-id-4301 .entry-plan-page .ep-faq-item summary::-webkit-details-marker {
	display: none;
}

body.page-id-4301 .entry-plan-page .ep-faq-item summary::before {
	position: absolute;
	top: 24px;
	left: 5px;
	color: var(--ep-blue);
	font-size: 15px;
	font-weight: 700;
	content: "Q";
}

body.page-id-4301 .entry-plan-page .ep-faq-item summary::after {
	position: absolute;
	top: 50%;
	right: 18px;
	width: 12px;
	height: 12px;
	border-right: 1.5px solid var(--ep-blue);
	border-bottom: 1.5px solid var(--ep-blue);
	transform: translateY(-70%) rotate(45deg);
	transition: transform .2s ease;
	content: "";
}

body.page-id-4301 .entry-plan-page .ep-faq-item[open] summary::after {
	transform: translateY(-30%) rotate(225deg);
}

body.page-id-4301 .entry-plan-page .ep-faq-item__answer {
	position: relative;
	padding: 0 56px 25px;
	color: var(--ep-text);
}

body.page-id-4301 .entry-plan-page .ep-faq-item__answer::before {
	position: absolute;
	top: 0;
	left: 5px;
	color: var(--ep-muted);
	font-size: 15px;
	font-weight: 700;
	content: "A";
}

body.page-id-4301 .entry-plan-page .ep-faq-item__answer p {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
}

@media screen and (max-width: 980px) {
	body.page-id-4301 .entry-plan-page .ep-feature-grid {
		grid-template-columns: 1fr;
	}

	body.page-id-4301 .entry-plan-page .ep-feature-card {
		padding: 28px 24px;
		border-right: 0;
		border-bottom: 1px solid var(--ep-line);
	}

	body.page-id-4301 .entry-plan-page .ep-feature-card:last-child {
		border-bottom: 0;
	}

	body.page-id-4301 .entry-plan-page .ep-feature-card h3 {
		min-height: 0;
		margin-bottom: 14px;
	}
}

@media screen and (max-width: 760px) {
	body.page-id-4301 .entry-plan-page {
		font-size: 15px;
	}

	body.page-id-4301 .entry-plan-page .ep-section {
		margin-bottom: 64px;
	}

	body.page-id-4301 .entry-plan-page .ep-section__header {
		margin-bottom: 25px;
	}

	body.page-id-4301 .entry-plan-page .ep-section__header h2,
	body.page-id-4301 .entry-plan-page .ep-consultation-panel h2 {
		font-size: clamp(25px, 7vw, 32px);
		line-height: 1.55;
	}

	body.page-id-4301 .entry-plan-page .ep-pc-only {
		display: none;
	}

	body.page-id-4301 .entry-plan-page .ep-check-panel {
		padding: 6px 20px;
	}

	body.page-id-4301 .entry-plan-page .ep-check-list li {
		padding: 16px 0 16px 30px;
	}

	body.page-id-4301 .entry-plan-page .ep-check-list li::before {
		top: 21px;
		left: 2px;
	}

	body.page-id-4301 .entry-plan-page .ep-section__closing {
		text-align: left;
	}

	body.page-id-4301 .entry-plan-page .ep-reason-panel,
	body.page-id-4301 .entry-plan-page .ep-price-grid,
	body.page-id-4301 .entry-plan-page .ep-support-box,
	body.page-id-4301 .entry-plan-page .ep-consultation-panel {
		grid-template-columns: 1fr;
	}

	body.page-id-4301 .entry-plan-page .ep-reason-list {
		padding: 25px 26px 25px 46px;
		border-right: 0;
		border-bottom: 1px solid var(--ep-line);
	}

	body.page-id-4301 .entry-plan-page .ep-reason-panel__text,
	body.page-id-4301 .entry-plan-page .ep-support-box__body {
		padding: 25px 24px;
	}

	body.page-id-4301 .entry-plan-page .ep-price-card {
		padding: 29px 24px;
	}

	body.page-id-4301 .entry-plan-page .ep-price-card__price span {
		font-size: clamp(37px, 11vw, 48px);
	}

	body.page-id-4301 .entry-plan-page .ep-contract-note {
		padding: 21px 22px;
	}

	body.page-id-4301 .entry-plan-page .ep-support-box__heading {
		padding: 26px 24px;
	}

	body.page-id-4301 .entry-plan-page .ep-question-list {
		grid-template-columns: 1fr;
	}

	body.page-id-4301 .entry-plan-page .ep-consultation-panel__heading,
	body.page-id-4301 .entry-plan-page .ep-consultation-panel__body {
		padding: 28px 24px;
	}

	body.page-id-4301 .entry-plan-page .ep-consultation-panel__heading {
		border-right: 0;
		border-bottom: 1px solid var(--ep-line);
	}

	body.page-id-4301 .entry-plan-page .ep-flow-list::before {
		left: 23px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-step {
		gap: 13px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-step__number {
		flex-basis: 48px;
		width: 48px;
		height: 48px;
		font-size: 11px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-step__content {
		padding: 19px 20px 21px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-step h3 {
		font-size: 18px;
	}

	body.page-id-4301 .entry-plan-page .ep-area-card {
		align-items: flex-start;
		flex-direction: column;
		padding: 27px 24px;
	}

	body.page-id-4301 .entry-plan-page .ep-faq-item summary {
		padding: 21px 42px 21px 34px;
		font-size: 16px;
	}

	body.page-id-4301 .entry-plan-page .ep-faq-item summary::before {
		top: 21px;
		left: 0;
	}

	body.page-id-4301 .entry-plan-page .ep-faq-item summary::after {
		right: 9px;
	}

	body.page-id-4301 .entry-plan-page .ep-faq-item__answer {
		padding: 0 8px 22px 34px;
	}

	body.page-id-4301 .entry-plan-page .ep-faq-item__answer::before {
		left: 0;
	}
}

@media screen and (max-width: 420px) {
	body.page-id-4301 .entry-plan-page .ep-price-card__price {
		white-space: normal;
	}

	body.page-id-4301 .entry-plan-page .ep-price-card__price span {
		font-size: 36px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-step {
		gap: 11px;
		padding-bottom: 24px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-list::before {
		left: 19px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-step__number {
		flex-basis: 40px;
		width: 40px;
		height: 40px;
		font-size: 10px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-step__content {
		padding: 17px 16px 19px;
	}

	body.page-id-4301 .entry-plan-page .ep-flow-step h3 {
		font-size: 17px;
	}
}


/* =========================================================
   Web design service page
   page-id-15 only
========================================================= */
body.page-id-15 .web-design-page {
	--wd-navy: #173f60;
	--wd-blue: #2f91bd;
	--wd-text: #465660;
	--wd-muted: #6c7d88;
	--wd-line: #d9e3e8;
	--wd-pale: #f2f6f7;
	--wd-white: #fff;
	color: var(--wd-text);
	font-size: 16px;
	line-height: 2;
}

body.page-id-15 .web-design-page,
body.page-id-15 .web-design-page * {
	box-sizing: border-box;
}

body.page-id-15 .web-design-page .wd-section {
	margin: 0 0 88px;
}

body.page-id-15 .web-design-page .wd-section:last-child {
	margin-bottom: 0;
}

body.page-id-15 .web-design-page p,
body.page-id-15 .web-design-page ul,
body.page-id-15 .web-design-page figure {
	margin-top: 0;
}

body.page-id-15 .web-design-page p:last-child,
body.page-id-15 .web-design-page ul:last-child,
body.page-id-15 .web-design-page figure:last-child {
	margin-bottom: 0;
}

body.page-id-15 .web-design-page .wd-section__header {
	margin-bottom: 32px;
}

body.page-id-15 .web-design-page .wd-section__header > p:last-child {
	max-width: 690px;
	margin-top: 18px;
}

body.page-id-15 .web-design-page .wd-eyebrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 14px;
	color: var(--wd-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .18em;
}

body.page-id-15 .web-design-page .wd-eyebrow::before {
	display: block;
	flex: 0 0 38px;
	width: 38px;
	height: 1px;
	background: var(--wd-blue);
	content: "";
}

body.page-id-15 .web-design-page .wd-section__header h2,
body.page-id-15 .web-design-page .wd-nationwide-panel h2 {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: var(--wd-navy);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: -.03em;
}

body.page-id-15 .web-design-page .wd-section__header h2::before,
body.page-id-15 .web-design-page .wd-nationwide-panel h2::before {
	display: none;
	content: none;
}

body.page-id-15 .web-design-page h3 {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: var(--wd-navy);
	font-weight: 700;
}

body.page-id-15 .web-design-page h3::after {
	display: none;
	content: none;
}

body.page-id-15 .web-design-page strong {
	color: var(--wd-navy);
	font-weight: 700;
}

body.page-id-15 .web-design-page .wd-note {
	color: var(--wd-muted);
	font-size: 12px;
	line-height: 1.85;
}

/* Introduction */
body.page-id-15 .web-design-page .wd-intro {
	position: relative;
	margin-bottom: 88px;
	padding: 34px 38px 35px;
	border-top: 1px solid var(--wd-line);
	border-bottom: 1px solid var(--wd-line);
	background: var(--wd-pale);
}

body.page-id-15 .web-design-page .wd-intro::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 86px;
	height: 3px;
	background: var(--wd-blue);
	content: "";
}

body.page-id-15 .web-design-page .wd-intro__lead {
	margin-bottom: 18px;
	color: var(--wd-navy);
	font-size: clamp(23px, 2.5vw, 31px);
	font-weight: 700;
	line-height: 1.65;
	letter-spacing: -.02em;
}

body.page-id-15 .web-design-page .wd-intro__text {
	margin: 0;
	line-height: 2;
}

/* Five differences */
body.page-id-15 .web-design-page .wd-difference-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--wd-line);
	border-left: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-difference-item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	min-width: 0;
	padding: 25px 22px;
	border-right: 1px solid var(--wd-line);
	border-bottom: 1px solid var(--wd-line);
	background: var(--wd-white);
}

body.page-id-15 .web-design-page .wd-difference-item--wide {
	grid-column: 1 / -1;
}

body.page-id-15 .web-design-page .wd-difference-item__number {
	color: var(--wd-blue);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .08em;
}

body.page-id-15 .web-design-page .wd-difference-item > div:last-child {
	min-width: 0;
	width: 100%;
	word-break: normal;
	overflow-wrap: break-word;
	writing-mode: horizontal-tb;
}

body.page-id-15 .web-design-page .wd-difference-item__label {
	margin-bottom: 7px;
	color: var(--wd-muted);
	font-size: 9px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .14em;
}

body.page-id-15 .web-design-page .wd-difference-item h3 {
	font-size: 17px;
	line-height: 1.65;
}

body.page-id-15 .web-design-page .wd-section__closing {
	margin: 22px 0 0;
	color: var(--wd-muted);
	text-align: right;
}

/* Three approaches */
body.page-id-15 .web-design-page .wd-approach-list {
	border-top: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-approach-item {
	display: grid;
	grid-template-columns: minmax(210px, .72fr) minmax(0, 1.28fr);
	border-bottom: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-approach-item__heading,
body.page-id-15 .web-design-page .wd-approach-item__body {
	padding: 31px 28px;
}

body.page-id-15 .web-design-page .wd-approach-item__heading {
	border-right: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-approach-item__number {
	display: block;
	margin-bottom: 16px;
	color: var(--wd-blue);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
}

body.page-id-15 .web-design-page .wd-approach-item h3 {
	font-size: 20px;
	line-height: 1.7;
}

body.page-id-15 .web-design-page .wd-approach-item__body p {
	margin-bottom: 13px;
	font-size: 15px;
	line-height: 1.9;
}

/* Selected works */
body.page-id-15 .web-design-page .wd-works-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 35px 22px;
}

body.page-id-15 .web-design-page .wd-work-card {
	min-width: 0;
	margin: 0;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-work-card__image {
	position: relative;
	overflow: hidden;
	margin-bottom: 17px;
	background: var(--wd-pale);
	aspect-ratio: 16 / 10;
}

body.page-id-15 .web-design-page .wd-work-card__image::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(23, 63, 96, .08);
	pointer-events: none;
	content: "";
}

body.page-id-15 .web-design-page .wd-work-card img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: top center;
}

body.page-id-15 .web-design-page .wd-work-card figcaption {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin: 0;
	padding: 0;
	color: var(--wd-text);
	text-align: left;
}

body.page-id-15 .web-design-page .wd-work-card__number {
	color: var(--wd-blue);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}

body.page-id-15 .web-design-page .wd-work-card figcaption > div:last-child {
	min-width: 0;
	width: 100%;
	word-break: normal;
	overflow-wrap: break-word;
	writing-mode: horizontal-tb;
}

body.page-id-15 .web-design-page .wd-work-card strong,
body.page-id-15 .web-design-page .wd-work-card small {
	display: block;
}

body.page-id-15 .web-design-page .wd-work-card strong {
	font-size: 15px;
	line-height: 1.6;
}

body.page-id-15 .web-design-page .wd-work-card small {
	margin-top: 4px;
	color: var(--wd-muted);
	font-size: 11px;
	line-height: 1.6;
}

/* Nationwide */
body.page-id-15 .web-design-page .wd-nationwide-panel {
	display: grid;
	grid-template-columns: minmax(220px, .78fr) minmax(0, 1.22fr);
	border: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-nationwide-panel__heading {
	padding: 36px 31px;
	background: var(--wd-navy);
}

body.page-id-15 .web-design-page .wd-nationwide-panel__heading .wd-eyebrow,
body.page-id-15 .web-design-page .wd-nationwide-panel h2 {
	color: #fff;
}

body.page-id-15 .web-design-page .wd-nationwide-panel__heading .wd-eyebrow::before {
	background: rgba(255, 255, 255, .7);
}

body.page-id-15 .web-design-page .wd-nationwide-panel h2 {
	font-size: clamp(25px, 2.6vw, 32px);
}

body.page-id-15 .web-design-page .wd-nationwide-panel__number {
	margin: 24px 0 0;
	color: rgba(255, 255, 255, .7);
	font-size: 9px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .17em;
}

body.page-id-15 .web-design-page .wd-nationwide-panel__number span {
	display: block;
	margin-bottom: 3px;
	color: #fff;
	font-size: 52px;
	font-weight: 300;
	line-height: 1;
	letter-spacing: -.04em;
}

body.page-id-15 .web-design-page .wd-nationwide-panel__body {
	padding: 38px 35px;
	background: var(--wd-pale);
}

body.page-id-15 .web-design-page .wd-nationwide-panel__body p {
	margin-bottom: 14px;
}

/* WordPress and responsive design */
body.page-id-15 .web-design-page .wd-technology-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--wd-line);
	border-bottom: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-technology-card {
	padding: 31px 28px;
	border-right: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-technology-card:last-child {
	border-right: 0;
}

body.page-id-15 .web-design-page .wd-technology-card__number {
	display: block;
	margin-bottom: 16px;
	color: var(--wd-blue);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
}

body.page-id-15 .web-design-page .wd-technology-card h3 {
	min-height: 5.2em;
	margin-bottom: 18px;
	font-size: 19px;
	line-height: 1.7;
}

body.page-id-15 .web-design-page .wd-technology-card p {
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.85;
}

/* Service and price */
body.page-id-15 .web-design-page .wd-service-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(240px, .92fr);
	gap: 20px;
}

body.page-id-15 .web-design-page .wd-service-includes,
body.page-id-15 .web-design-page .wd-price-card {
	padding: 31px 29px;
	border: 1px solid var(--wd-line);
	background: var(--wd-white);
}

body.page-id-15 .web-design-page .wd-service-includes__label,
body.page-id-15 .web-design-page .wd-price-card__label,
body.page-id-15 .web-design-page .wd-handover-note__label,
body.page-id-15 .web-design-page .wd-payment-box__label {
	margin-bottom: 15px;
	color: var(--wd-blue);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .14em;
}

body.page-id-15 .web-design-page .wd-service-includes ul {
	margin: 0 0 21px;
	padding: 0;
	list-style: none;
}

body.page-id-15 .web-design-page .wd-service-includes li {
	position: relative;
	margin: 0;
	padding: 9px 0 9px 27px;
	border-bottom: 1px solid #e9eef0;
	font-size: 14px;
	line-height: 1.7;
}

body.page-id-15 .web-design-page .wd-service-includes li::before {
	position: absolute;
	top: 18px;
	left: 2px;
	width: 10px;
	height: 6px;
	border-bottom: 1.5px solid var(--wd-blue);
	border-left: 1.5px solid var(--wd-blue);
	transform: rotate(-45deg);
	content: "";
}

body.page-id-15 .web-design-page .wd-price-card {
	position: relative;
	background: var(--wd-navy);
	color: rgba(255, 255, 255, .88);
}

body.page-id-15 .web-design-page .wd-price-card__service {
	margin-bottom: 18px;
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.65;
}

body.page-id-15 .web-design-page .wd-price-card__price {
	margin-bottom: 24px;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255, 255, 255, .22);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
}

body.page-id-15 .web-design-page .wd-price-card__price span {
	display: block;
	font-size: clamp(36px, 4vw, 48px);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: -.04em;
}

body.page-id-15 .web-design-page .wd-price-card__price b {
	display: block;
	margin: 2px 0;
	color: rgba(255, 255, 255, .58);
	font-size: 15px;
	font-weight: 400;
}

body.page-id-15 .web-design-page .wd-price-card__price small {
	font-size: 11px;
	font-weight: 400;
}

body.page-id-15 .web-design-page .wd-price-card > p:last-child {
	font-size: 13px;
	line-height: 1.85;
}

body.page-id-15 .web-design-page .wd-handover-note {
	margin-top: 24px;
	padding: 25px 28px;
	border-left: 3px solid var(--wd-blue);
	background: var(--wd-pale);
}

body.page-id-15 .web-design-page .wd-handover-note p:last-child {
	font-size: 14px;
	line-height: 1.9;
}

body.page-id-15 .web-design-page .wd-option-area {
	margin-top: 48px;
}

body.page-id-15 .web-design-page .wd-option-area__heading {
	margin-bottom: 22px;
}

body.page-id-15 .web-design-page .wd-option-area__heading h3 {
	font-size: 24px;
	line-height: 1.55;
}

body.page-id-15 .web-design-page .wd-option-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 18px;
}

body.page-id-15 .web-design-page .wd-option-card {
	padding: 27px 25px;
	border: 1px solid var(--wd-line);
	background: var(--wd-white);
}

body.page-id-15 .web-design-page .wd-option-card__name {
	margin-bottom: 10px;
	color: var(--wd-navy);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

body.page-id-15 .web-design-page .wd-option-card__price {
	margin-bottom: 18px;
	padding-bottom: 17px;
	border-bottom: 1px solid var(--wd-line);
	color: var(--wd-navy);
	font-size: 14px;
	font-weight: 700;
}

body.page-id-15 .web-design-page .wd-option-card__price span {
	font-size: 30px;
	font-weight: 500;
	letter-spacing: -.03em;
}

body.page-id-15 .web-design-page .wd-option-card > p:not(.wd-option-card__name):not(.wd-option-card__price) {
	margin-bottom: 9px;
	font-size: 14px;
	line-height: 1.8;
}

body.page-id-15 .web-design-page .wd-option-card__sub {
	color: var(--wd-muted);
	font-size: 12px !important;
}

body.page-id-15 .web-design-page .wd-payment-box {
	display: grid;
	grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr);
	gap: 30px;
	margin-top: 48px;
	padding: 30px 0;
	border-top: 1px solid var(--wd-line);
	border-bottom: 1px solid var(--wd-line);
}

body.page-id-15 .web-design-page .wd-payment-box h3 {
	font-size: 21px;
	line-height: 1.55;
}

body.page-id-15 .web-design-page .wd-payment-box > div:last-child p {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1.9;
}

@media screen and (max-width: 980px) {
	body.page-id-15 .web-design-page .wd-approach-item,
	body.page-id-15 .web-design-page .wd-nationwide-panel,
	body.page-id-15 .web-design-page .wd-service-layout {
		grid-template-columns: 1fr;
	}

	body.page-id-15 .web-design-page .wd-approach-item__heading {
		border-right: 0;
		border-bottom: 1px solid var(--wd-line);
	}

	body.page-id-15 .web-design-page .wd-nationwide-panel__heading {
		padding: 31px 28px;
	}

	body.page-id-15 .web-design-page .wd-nationwide-panel__number span {
		display: inline-block;
		margin: 0 8px 0 0;
		font-size: 42px;
		vertical-align: middle;
	}
}

@media screen and (max-width: 760px) {
	body.page-id-15 .web-design-page {
		font-size: 15px;
	}

	body.page-id-15 .web-design-page .wd-section,
	body.page-id-15 .web-design-page .wd-intro {
		margin-bottom: 64px;
	}

	body.page-id-15 .web-design-page .wd-section__header {
		margin-bottom: 25px;
	}

	body.page-id-15 .web-design-page .wd-section__header h2,
	body.page-id-15 .web-design-page .wd-nationwide-panel h2 {
		font-size: clamp(25px, 7vw, 32px);
	}

	body.page-id-15 .web-design-page .wd-pc-only {
		display: none;
	}

	body.page-id-15 .web-design-page .wd-intro {
		padding: 28px 24px;
	}

	body.page-id-15 .web-design-page .wd-intro__lead {
		font-size: clamp(21px, 6vw, 27px);
	}

	body.page-id-15 .web-design-page .wd-difference-list,
	body.page-id-15 .web-design-page .wd-works-grid,
	body.page-id-15 .web-design-page .wd-technology-grid,
	body.page-id-15 .web-design-page .wd-option-grid,
	body.page-id-15 .web-design-page .wd-payment-box {
		grid-template-columns: 1fr;
	}

	body.page-id-15 .web-design-page .wd-difference-item--wide {
		grid-column: auto;
	}

	body.page-id-15 .web-design-page .wd-section__closing {
		text-align: left;
	}

	body.page-id-15 .web-design-page .wd-approach-item__heading,
	body.page-id-15 .web-design-page .wd-approach-item__body,
	body.page-id-15 .web-design-page .wd-nationwide-panel__body,
	body.page-id-15 .web-design-page .wd-technology-card,
	body.page-id-15 .web-design-page .wd-service-includes,
	body.page-id-15 .web-design-page .wd-price-card {
		padding: 26px 23px;
	}

	body.page-id-15 .web-design-page .wd-technology-card {
		border-right: 0;
		border-bottom: 1px solid var(--wd-line);
	}

	body.page-id-15 .web-design-page .wd-technology-card:last-child {
		border-bottom: 0;
	}

	body.page-id-15 .web-design-page .wd-technology-card h3 {
		min-height: 0;
	}

	body.page-id-15 .web-design-page .wd-payment-box {
		gap: 18px;
	}
}

@media screen and (max-width: 420px) {
	body.page-id-15 .web-design-page .wd-difference-item {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 10px;
		padding: 22px 17px;
	}

	body.page-id-15 .web-design-page .wd-work-card figcaption {
		grid-template-columns: 25px minmax(0, 1fr);
		gap: 8px;
	}

	body.page-id-15 .web-design-page .wd-price-card__price span {
		font-size: 35px;
	}
}
