﻿@charset "UTF-8";

html,
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas,
details, figcaption, figure, footer, header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
	display: block;
}

nav ul {
	list-style: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, select {
	vertical-align: middle;
}

body {
	color: #0f2c34;
	line-height: 0;
	font-family: "Noto Sans JP", "Segoe UI", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	--accent-cool: #0b5d52;
	--accent-cool-soft: #e8f3f6;
	--line-cool: #cfe2ea;
	--surface-cool: #f7fbfd;
	--link-cool: #073e4d;
	--link-cool-hover: #022f3b;
	--text-strong: #04181f;
	--text-body: #0a2129;
	--text-muted: #234a56;
	--panel-soft: rgba(241, 249, 253, 0.93);
	--panel-border: rgba(14, 79, 99, 0.44);
	--panel-soft-strong: rgba(240, 249, 253, 0.98);
	--line-strong: rgba(14, 79, 99, 0.40);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 14px;
	--shadow-sm: 0 6px 14px rgba(4, 35, 44, 0.13);
	--shadow-md: 0 10px 22px rgba(4, 35, 44, 0.16);
	--shadow-lg: 0 14px 30px rgba(3, 30, 39, 0.24);
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-8: 32px;
	--motion-fast: 0.2s ease;
	--header-height: 110px;
	--header-logo-max-height: 102px;
	--footer-logo-area-height: 100px;
	--footer-logo-max-height: 100px;
	--font-sans: "Noto Sans JP", "Segoe UI", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
	--font-ui: "Segoe UI", "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "Meiryo", sans-serif;
	--page-bg-top: #56bac9;
	--page-bg-base: #49afbf;
	--page-bg-bottom: #3fa4b6;
	background-color: var(--page-bg-base);
	background-image: url("../img/background-texture.svg");
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

body * {
	box-sizing: border-box;
}

body .wrapper {
	margin-bottom: auto;
}

.wrapper {
	margin-top: 0;
	margin-bottom: 50px;
	background: transparent;
	box-shadow: none;
	border: 0;
	backdrop-filter: none;
}

p {
	margin-bottom: 1.5em;
}

p:last-child {
	margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family: var(--font-sans);
	letter-spacing: 0.01em;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

ul {
	list-style: none;
}

a {
	color: var(--link-cool);
	text-decoration: none;
	transition: color var(--motion-fast), border-color var(--motion-fast), background-color var(--motion-fast);
}

button, input, select, textarea {
	font-family: var(--font-ui);
}

@media (hover: hover) {
	a:hover {
		color: var(--link-cool-hover);
		text-decoration: underline;
	}
}

/* --------------------------------------------
 * 　基本ブロック幅
 * -------------------------------------------- */
.blContainer {
	width: 92%;
	max-width: 1160px;
	margin-right: auto;
	margin-left: auto;
}

/* --------------------------------------------
 * 　サブページヘッダー
 * -------------------------------------------- */
.subpageHeader {
	font-size: 1.75rem;
	font-weight: 800;
	background: linear-gradient(90deg, rgba(188, 224, 236, 0.56) 0%, rgba(178, 217, 230, 0.56) 100%);
	border-top: 1px solid rgba(14, 79, 99, 0.36);
	border-bottom: 1px solid rgba(14, 79, 99, 0.36);
	margin-bottom: var(--space-2);
	padding-top: var(--space-6);
	padding-bottom: var(--space-6);
	color: #07313d;
}

.subpageHeader-title {
	margin: 0;
	font-size: inherit;
	font-weight: 800;
	line-height: 1.4;
	color: inherit;
}

/* --------------------------------------------
 * 　見出し
 * -------------------------------------------- */
.sectionHeading {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: var(--space-5);
	padding-left: 0.55em;
	border-left: 4px solid var(--accent-cool);
	color: var(--text-strong);
}

/* --------------------------------------------
 * 　テーブル
 * -------------------------------------------- */
.table {
	width: 100%;
}

.table-header {
	width: 100px;
	text-align: left;
	padding-top: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line-cool);
}

.table-data {
	width: calc(100% - 100px);
	padding-top: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line-cool);
}

/* --------------------------------------------
 * 　ページネーション
 * -------------------------------------------- */
.navigation.pagination {
	margin-top: 30px;
}

.navigation.pagination .nav-links .prev {
	border: none !important;
}

.navigation.pagination .nav-links .next {
	border: none !important;
}

.navigation.pagination .nav-links .current {
	padding: 6px 11px;
	background: var(--text-strong);
	border: 1px solid var(--text-strong);
	border-radius: var(--radius-sm);
	color: #ffffff;
}

.navigation.pagination .nav-links a {
	padding: 6px 11px;
	border: 1px solid var(--text-strong);
	border-radius: var(--radius-sm);
	color: var(--text-strong);
}

.navigation.pagination .nav-links a:hover {
	background: var(--text-strong);
	border: 1px solid var(--text-strong);
	color: #ffffff;
	text-decoration: none;
}

/* --------------------------------------------
 * 　ヘッダー
 * -------------------------------------------- */
.header {
	display: flex;
	align-items: flex-end;
	gap: var(--space-6);
	height: var(--header-height);
	padding-top: 0;
	padding-bottom: 0;
	border: 0;
	background: linear-gradient(180deg, rgba(235, 246, 251, 0.72) 0%, rgba(226, 239, 245, 0.72) 100%);
	border-bottom: 1px solid rgba(157, 187, 198, 0.55);
	backdrop-filter: none;
	border-radius: 0;
	padding-left: 2.5%;
	padding-right: 2.5%;
	box-shadow: none;
}

/* body直下の不要ノードで先頭に行ボックスができる現象を回避 */
body > * {
	line-height: 1.8;
}

.header.blContainer {
	width: 100%;
	max-width: none;
}

html {
	scrollbar-gutter: stable;
}

html {
	margin-top: 0 !important;
}

body.admin-bar {
	padding-top: 0 !important;
}

body.admin-bar .header {
	padding-top: 0;
	height: var(--header-height);
}

@media screen and (max-width: 782px) {
	body.admin-bar {
		padding-top: 0 !important;
	}

	body.admin-bar .header {
		padding-top: 0;
		height: var(--header-height);
	}
}



.header.is-home {
	background: linear-gradient(180deg, rgba(235, 246, 251, 0.78) 0%, rgba(226, 239, 245, 0.78) 100%);
}

.header-logo {
	height: 100%;
	margin-right: auto;
	display: flex;
	align-items: flex-end;
}

.header-logo img {
	display: block;
	height: var(--header-logo-max-height);
	width: auto;
	max-width: none;
	max-height: none;
}

.mainMenu {
	font-size: 1rem;
	font-family: var(--font-ui);
	margin-left: auto;
	margin-bottom: 8px;
	min-width: 0;
}

.mainMenu-list {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: var(--space-4);
}

.mainMenu-link {
	display: inline-block;
	position: relative;
	z-index: 0;
	padding: 4px 8px;
	border-bottom: 2px solid transparent;
	color: var(--text-strong);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.015em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: color var(--motion-fast), transform var(--motion-fast), box-shadow var(--motion-fast);
}

.mainMenu-link::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(215, 238, 244, 0.96) 100%);
	box-shadow: 0 10px 22px rgba(7, 62, 77, 0.12);
	opacity: 0;
	transform: translateY(6px) scale(0.94);
	transition: opacity var(--motion-fast), transform var(--motion-fast);
}

.mainMenu-link::after {
	content: "";
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 4px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #1594a2 0%, var(--accent-cool) 100%);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--motion-fast);
}

.mainMenu-link:focus-visible {
	outline: 2px solid rgba(11, 93, 82, 0.28);
	outline-offset: 3px;
}

@media (hover: hover) {
	.mainMenu-link:hover {
		color: var(--accent-cool);
		transform: translateY(-2px);
		box-shadow: 0 6px 14px rgba(7, 62, 77, 0.12);
		border-bottom-color: transparent;
		text-decoration: none;
	}

	.mainMenu-link:hover::before {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	.mainMenu-link:hover::after {
		transform: scaleX(1);
	}
}

.mainMenu-link:focus-visible::before {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.mainMenu-link:focus-visible::after {
	transform: scaleX(1);
}

.mainMenu-link:focus-visible,
.mainMenu-link:focus-visible:hover {
	color: var(--accent-cool);
	text-decoration: none;
}

.mainMenu-link.is-current {
	color: #ffffff;
	background: var(--accent-cool);
	border-bottom-color: transparent;
}

.mainMenu-link.is-current::before,
.mainMenu-link.is-current::after {
	content: none;
}

.menuToggle {
	display: none;
}

.keyVisual {
	margin-top: 18px;
	margin-bottom: 0;
}

.keyVisual-inner {
	min-height: 280px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-top: var(--space-4);
	padding-bottom: var(--space-4);
}

.catchCopy {
	text-align: right;
}

.catchCopy-main {
	margin: 0;
	font-size: clamp(2.1rem, 5.8vw, 4.6rem);
	font-weight: 700;
	font-family: var(--font-sans);
	letter-spacing: 0.04em;
	line-height: 1.18;
	text-align: right;
	color: var(--text-strong);
	padding: 0;
	border: 0;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
	text-shadow:
		0 1px 0 rgba(255, 255, 255, 0.22);
}

.catchCopy-sub {
	margin-top: var(--space-2);
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	font-weight: 500;
	line-height: 1.5;
	color: var(--text-strong);
	text-align: right;
}

.frontIntro {
	margin-top: 28px;
	margin-bottom: 40px;
}

.frontIntro--detail {
	margin-top: 0;
}

.frontIntro-body {
	padding: var(--space-4) var(--space-5);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.frontIntro-lead,
.frontIntro-text {
	margin: 0;
}

.frontIntro-points {
	margin: var(--space-3) 0 0;
	padding-left: 1.2em;
	color: var(--text-default);
}

.frontIntro-point + .frontIntro-point {
	margin-top: 0.35em;
}

.frontIntro-lead {
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.7;
	color: var(--text-strong);
}

.frontIntro-text {
	margin-top: var(--space-2);
	line-height: 1.85;
	color: var(--text-default);
}

.frontWorks {
	margin-bottom: 64px;
}

.frontWorks .works {
	padding: var(--space-4) var(--space-5);
	background: var(--panel-soft-strong);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.post-type-archive-works .works {
	padding: var(--space-4) var(--space-5);
	background: var(--panel-soft-strong);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.frontNews {
	margin-bottom: 50px;
	padding-top: 36px;
	background: transparent;
	border-top: 2px solid var(--line-cool);
	border-radius: 0;
	box-shadow: none;
}

.frontNews-list {
	padding: var(--space-4) var(--space-5);
	background: var(--panel-soft-strong);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.frontNews-heading,
.frontWorks-heading {
	color: var(--text-strong);
}

.news-item {
	display: flex;
	gap: var(--space-4);
	border-bottom: 1px solid var(--line-strong);
	padding-top: var(--space-2);
	padding-bottom: var(--space-2);
}

.news-date {
	flex: 0 0 115px;
	color: var(--text-muted);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.01em;
}

.news-link {
	color: var(--text-strong);
}

.news-title {
	color: var(--text-strong);
	font-weight: 600;
	line-height: 1.6;
}

.news-noPost {
	color: var(--text-muted);
}

.news-goList {
	display: inline-block;
	margin-top: 24px;
	color: var(--link-cool-hover);
	font-weight: 600;
}

/* --------------------------------------------
 * 　アプリ
 * -------------------------------------------- */
.works-list {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.works-item {
	flex: 0 0 calc((100% - 56px) / 3);
	display: flex;
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(7, 74, 95, 0.52);
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(220, 240, 248, 0.95) 100%);
	box-shadow: 0 14px 26px rgba(4, 35, 44, 0.19);
	transition: transform var(--motion-fast), box-shadow var(--motion-fast), border-color var(--motion-fast);
	padding: var(--space-5) var(--space-5) 17px;
}

.works-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0a6f8c 0%, #27a0c0 52%, #8bd4e8 100%);
}

.works-link {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	color: var(--text-strong);
}

.works-img {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: linear-gradient(145deg, rgba(7, 61, 78, 0.13) 0%, rgba(139, 205, 223, 0.28) 100%);
	border: 1px solid rgba(8, 76, 96, 0.34);
	padding: 10px;
	margin-bottom: 0;
}

.works-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.works-noImage {
	aspect-ratio: 16 / 9;
	background: rgba(9, 70, 89, 0.10);
	border: 1px solid var(--line-cool);
	border-radius: var(--radius-sm);
}

.works-date {
	font-size: 0.8125rem;
	margin-bottom: 3px;
}

.works-title {
	font-size: 1rem;
	line-height: 1.55;
	margin-top: 2px;
	font-weight: 700;
	color: var(--text-strong);
	letter-spacing: 0.01em;
}

.works-exp {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--text-muted);
	margin-top: 2px;
}

.works-goList {
	display: inline-block;
	margin-top: 24px;
	color: var(--link-cool-hover);
	font-weight: 600;
}

.frontWorks .works-list {
	align-items: stretch;
}

@media (hover: hover) {
	.news-link:hover .news-title {
		color: var(--link-cool-hover);
	}

	.works-item:hover {
		transform: translateY(-6px);
		border-color: rgba(6, 92, 117, 0.74);
		box-shadow: 0 18px 34px rgba(3, 30, 39, 0.28);
	}

	.works-item:hover .works-title {
		color: #053949;
	}
}

.worksPost-title {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 30px;
}

.worksPost-information {
	font-size: 0.875rem;
	margin-bottom: 20px;
}

/* --------------------------------------------
 * 　お知らせ
 * -------------------------------------------- */
.article-date {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.article-category {
	font-size: 0.8125rem;
	margin-bottom: 20px;
	color: var(--text-muted);
}

.article-title {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 30px;
	color: var(--text-strong);
}

.archiveLead {
	margin-bottom: var(--space-4);
	color: var(--text-body);
	line-height: 1.8;
}

/* --------------------------------------------
 * 　フッター
 * -------------------------------------------- */
.footer {
	margin-top: 56px;
	padding-top: 20px;
	background: linear-gradient(180deg, rgba(235, 246, 251, 0.78) 0%, rgba(226, 239, 245, 0.78) 100%);
	border-top: 1px solid rgba(157, 187, 198, 0.55);
}

.footer-container {
	text-align: center;
}

.footer-logo {
	margin-bottom: 20px;
	height: var(--footer-logo-area-height);
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: var(--footer-logo-max-height);
}

.footer-copyRight {
	font-size: 0.6875rem;
	text-align: center;
	margin-top: 24px;
	padding-top: 3px;
	padding-bottom: 3px;
	background: rgba(18, 51, 59, 0.82);
	color: #f4fbff;
}

.footerMenu {
	font-size: 0.875rem;
	font-family: var(--font-ui);
}

.footerMenu-list {
	display: inline-flex;
	gap: 20px;
}

.footerMenu-link {
	color: #244954;
}

/* --------------------------------------------
 * 　404
 * -------------------------------------------- */
.page404 {
	text-align: center;
	padding-top: 12vh;
	padding-bottom: 15vh;
	color: var(--text-body);
	background: rgba(242, 250, 254, 0.84);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.page404-heading {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-strong);
	letter-spacing: 0.02em;
	margin-bottom: 30px;
}

.page404-message {
	color: var(--text-body);
}

.page404-message a {
	color: var(--link-cool-hover);
	text-decoration: underline;
	font-weight: 600;
}

/* --------------------------------------------
 * 　Contact Form 7 layout
 * -------------------------------------------- */
.contact-form-grid {
	max-width: 720px;
	margin: 0 auto;
	padding: var(--space-5);
	background: var(--panel-soft-strong);
	border: 1px solid var(--panel-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.contact-form-row {
	margin-bottom: var(--space-4);
}

.contact-form-row label {
	display: block;
	margin-bottom: 6px;
	font-weight: 700;
	color: var(--text-strong);
}

.contact-form-row input,
.contact-form-row select,
.contact-form-row textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--text-body);
}

.contact-form-row textarea {
	resize: vertical;
	min-height: 70px;
	height: 100px;
}

.required {
	color: #d22626;
	margin-left: 4px;
}

.contact-form-submit {
	margin-top: 8px;
	margin-bottom: 0;
}

.contact-form-submit .wpcf7-submit {
	min-width: 160px;
	padding: 10px 18px;
	border: 0;
	border-radius: var(--radius-sm);
	background: var(--text-strong);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: background-color var(--motion-fast), transform var(--motion-fast);
}

.contact-form-submit .wpcf7-submit:hover {
	background: var(--link-cool-hover);
	transform: translateY(-1px);
}

/* --------------------------------------------
 * 　利用規約ページ
 * -------------------------------------------- */
.page-content-terms-of-service,
.page-terms-of-service .blContainer {
	max-width: 860px;
}

.page-content-terms-of-service h2,
.page-terms-of-service .blContainer h2 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-strong);
	margin-bottom: var(--space-5);
	padding-left: 0.45em;
	border-left: 4px solid var(--accent-cool);
}

.page-content-terms-of-service h3,
.page-terms-of-service .blContainer h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-strong);
	margin-top: var(--space-6);
	margin-bottom: var(--space-3);
}

.page-content-terms-of-service p,
.page-terms-of-service .blContainer p {
	color: var(--text-body);
	line-height: 1.85;
	margin-bottom: var(--space-4);
}

.page-content-terms-of-service ol,
.page-terms-of-service .blContainer ol {
	list-style: decimal;
	padding-left: 1.4em;
	margin-bottom: var(--space-5);
}

.page-content-terms-of-service li,
.page-terms-of-service .blContainer li {
	color: var(--text-body);
	line-height: 1.8;
	margin-bottom: 0.45em;
}

/* --------------------------------------------
 * 　個人情報保護方針ページ
 * -------------------------------------------- */
.privacyPolicy {
	max-width: 860px;
}

.page-content-privacy-policy,
.page-privacy-policy .blContainer {
	max-width: 860px;
}

.privacyPolicy-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-strong);
	margin-bottom: var(--space-5);
	padding-left: 0.45em;
	border-left: 4px solid var(--accent-cool);
}

.page-content-privacy-policy h2,
.page-privacy-policy .blContainer h2 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-strong);
	margin-bottom: var(--space-5);
	padding-left: 0.45em;
	border-left: 4px solid var(--accent-cool);
}

.privacyPolicy-lead {
	color: var(--text-body);
	line-height: 1.85;
	margin-bottom: var(--space-5);
}

.page-content-privacy-policy p,
.page-privacy-policy .blContainer p {
	color: var(--text-body);
	line-height: 1.85;
	margin-bottom: var(--space-4);
}

.privacyPolicy-section {
	margin-bottom: var(--space-6);
}

.privacyPolicy-sectionTitle {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-strong);
	margin-bottom: var(--space-3);
}

.page-content-privacy-policy h3,
.page-privacy-policy .blContainer h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-strong);
	margin-top: var(--space-6);
	margin-bottom: var(--space-3);
}

.privacyPolicy-section p {
	color: var(--text-body);
	line-height: 1.85;
	margin-bottom: var(--space-3);
}

.privacyPolicy-list {
	list-style: disc;
	padding-left: 1.4em;
	margin-bottom: var(--space-3);
}

.page-content-privacy-policy ul,
.page-privacy-policy .blContainer ul {
	list-style: disc;
	padding-left: 1.4em;
	margin-bottom: var(--space-5);
}

.privacyPolicy-list li {
	color: var(--text-body);
	line-height: 1.8;
	margin-bottom: 0.45em;
}

.page-content-privacy-policy li,
.page-privacy-policy .blContainer li {
	color: var(--text-body);
	line-height: 1.8;
	margin-bottom: 0.45em;
}

.privacyPolicy-meta {
	color: var(--text-muted);
	line-height: 1.8;
	margin-top: var(--space-6);
}

/* --------------------------------------------
 * 　フォーム
 * -------------------------------------------- */
.screen-reader-response {
	display: none;
}

.wpcf7-not-valid-tip {
	color: #f02525;
}

.wpcf7-response-output {
	margin-top: 5px;
	text-align: center;
	color: #f02525;
}

.form {
	width: 100%;
	max-width: 860px;
	margin-right: auto;
	margin-left: auto;
}

.form-privacy {
	text-align: center;
}

.form-submit {
	width: 200px;
	margin-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

.form-submit input {
	width: 100%;
	padding: 1em;
	background: var(--text-strong);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	transition: background-color var(--motion-fast), transform var(--motion-fast);
}

.form-submit input:hover {
	cursor: pointer;
	background: var(--link-cool-hover);
	transform: translateY(-1px);
}

.formTable {
	width: 100%;
}

.formTable-header {
	width: 220px;
	text-align: left;
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: middle;
}

.formTable-header span {
	color: #fff;
	margin-left: 10px;
	font-size: 0.6875rem;
	font-weight: normal;
	padding: 0.3em;
	background: #f02525;
}

.formTable-data {
	width: calc(100% - 220px);
	padding-top: 10px;
	padding-bottom: 10px;
}

.formTable input {
	width: 100%;
	height: 50px;
	padding: 0.5em;
}

.formTable textarea {
	width: 100%;
	height: 200px;
	padding: 0.5em;
}

/* --------------------------------------------
 * 　ブロックエディタ
 * -------------------------------------------- */
.wp-block-gallery {
	margin-top: 30px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	body {
		--header-height: 96px;
		--header-logo-max-height: 66px;
		--footer-logo-area-height: 72px;
		--footer-logo-max-height: 48px;
	}

	.mainMenu-list {
		gap: var(--space-3);
		flex-wrap: wrap;
		justify-content: flex-end;
	}

	.header {
		gap: var(--space-4);
		height: auto;
		min-height: var(--header-height);
		padding-top: var(--space-3);
		padding-bottom: var(--space-3);
		padding-left: 0;
		padding-right: 0;
	}

	.mainMenu {
		width: 100%;
	}

	.keyVisual-inner {
		min-height: 220px;
	}

	.works-list {
		gap: var(--space-5);
	}

	.works-item {
		flex: 0 0 calc((100% - var(--space-5)) / 2);
	}

	.news-item {
		gap: var(--space-3);
	}
}

@media (max-width: 560px) {
	.header {
		flex-direction: column;
		align-items: stretch;
		gap: var(--space-3);
		position: relative;
		z-index: 1000;
	}

	.header-logo {
		height: auto;
		margin-right: 0;
	}

	.header-logo img {
		height: 54px;
	}

	.menuToggle {
		display: inline-flex;
		width: 38px;
		height: 30px;
		padding: 6px 0;
		margin-left: auto;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 3px;
		border: 1px solid var(--line-strong);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.86);
		transition: background-color var(--motion-fast), border-color var(--motion-fast);
	}

	.menuToggle-bar {
		display: block;
		width: 12px;
		height: 2px;
		background: var(--text-strong);
		border-radius: 999px;
		transition: transform var(--motion-fast), opacity var(--motion-fast);
	}

	.mainMenu {
		font-size: 0.9375rem;
		margin-left: 0;
		width: 100%;
	}

	.mainMenu-list {
		justify-content: flex-start;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.mainMenu-link {
		display: block;
		padding: 10px 12px;
		font-size: 0.9rem;
	}

	.header.is-menu-ready .mainMenu {
		display: none;
	}

	.header.is-menu-ready.is-menu-open .mainMenu {
		display: block;
		position: relative;
		z-index: 1001;
		padding: 10px;
		background: #ebf6fb;
		border: 1px solid var(--panel-border);
		border-radius: var(--radius-md);
		box-shadow: var(--shadow-sm);
	}

	.header.is-menu-ready.is-menu-open .mainMenu-link {
		background: #f7fbfd;
		border: 1px solid var(--line-cool);
	}

	.header.is-menu-ready.is-menu-open .mainMenu-link.is-current {
		background: var(--accent-cool);
		border-color: var(--accent-cool);
	}

	.header.is-menu-ready.is-menu-open .menuToggle {
		background: rgba(230, 243, 248, 0.98);
		border-color: rgba(14, 79, 99, 0.5);
	}

	.header.is-menu-ready.is-menu-open .menuToggle-bar:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.header.is-menu-ready.is-menu-open .menuToggle-bar:nth-child(2) {
		opacity: 0;
	}

	.header.is-menu-ready.is-menu-open .menuToggle-bar:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.sectionHeading {
		font-size: 1.5rem;
	}

	.catchCopy-main {
		font-size: clamp(1.6rem, 8vw, 2.6rem);
	}

	.catchCopy-sub {
		font-size: clamp(0.875rem, 4vw, 1.1rem);
	}

	.frontIntro {
		margin-top: 20px;
		margin-bottom: 28px;
	}

	.frontIntro--detail {
		margin-top: 0;
	}

	.frontIntro-body {
		padding: var(--space-3) var(--space-3);
	}

	.frontIntro-lead {
		font-size: 1rem;
	}

	.news-item {
		display: block;
	}

	.news-date {
		margin-bottom: 0.25em;
	}

	.works-item {
		flex: 0 0 100%;
	}

	.footerMenu-list {
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--space-3) var(--space-4);
	}
}

/*# sourceMappingURL=style.css.map */


