body {
	color: #2A2828;
	font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

/* ============================================
   RESET CSS + アクセシビリティ対応
   ============================================ */

/* 全要素を border-box に統一（余計なサイズ計算を避ける） */

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* デフォルトの余白をリセット */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none; /* 必要な場合は個別に list-style を戻す */
	padding: 0;
}

/* スクロール挙動を滑らかに（動き軽減設定を尊重） */

/* 本文の基本設定 */

body {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
	line-height: 1.5; /* 読みやすい行間 */
	min-height: 100vh;
	text-rendering: optimizeLegibility; /* 字形を見やすく */
}

/* リンクの基本リセット */

a {
	-webkit-text-decoration: none;
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

/* ホバー・アクティブ状態 */

a:hover,
a:active {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
}

/* 画像は親要素の幅にフィットさせる */

img {
	display: block;
	height: auto;
	max-width: 100%;
}

/* 記事内要素の間隔を自動で確保 */

article > * + * {
	margin-top: 1em;
}

/* ============================================
   フォーム要素リセット
   ============================================ */

/* フォントを継承・不要なデフォルト装飾を外す */

input,
button,
select,
textarea {
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	margin: 0;
	padding: 0;
}

/* appearance: none は必要なものだけに限定 */

.input-text,
.input-email,
.input-tel,
.textarea-box {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* フォーカスリングは必ず残す（outline: none は禁止） */

:focus-visible {
	outline: 2px solid #3498db; /* キーボード操作用の青枠 */
	outline-offset: 2px;
}

/* ボタンやセレクトボックスはカーソルを pointer に */

input[type=submit],
input[type=button],
button,
select,
label {
	cursor: pointer;
}

/* 無効状態をわかりやすく */

input[disabled],
button[disabled] {
	cursor: not-allowed;
	opacity: 0.6;
}

/* テキストエリアは縦方向のみリサイズ可能に */

textarea {
	resize: vertical;
}

/* ============================================
   アクセシビリティ対応
   ============================================ */

/* スキップリンク（キーボードユーザー用） */

.skip-link {
	-webkit-text-decoration: none;
	background: #000;
	color: #fff;
	left: 6px;
	padding: 8px;
	position: absolute;
	text-decoration: none;
	top: -40px;
	z-index: 1000;
}

.skip-link:focus {
	top: 6px;
}

/* 必須フィールドをラベルにマーク表示 */

label.required::after {
	color: #e74c3c;
	content: " *";
}

/* エラーメッセージのスタイル */

.error-message {
	color: #e74c3c;
	font-size: 0.9em;
}

/* エラー状態は入力中にだけ強調 */

/* ラジオ・チェックボックスは視覚的に隠すが、スクリーンリーダーでは有効 */

input[type=radio],
input[type=checkbox] {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

/* 代替UI（label側）にフォーカスリングを表示 */

input[type=radio]:focus-visible + label,
input[type=checkbox]:focus-visible + label {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}

/* ============================================
   fieldset / legend リセット（フォーム枠の完全解除）
   ============================================ */

fieldset {
	border: 0;
	margin: 0;
	min-width: 0; /* Firefoxの横ズレ防止 */
	padding: 0;
}

legend {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
}

.top__fv {
	background: linear-gradient(150deg, #ffffff 50%, #FAF9F7 100%);
	padding-bottom: 5rem;
	padding-top: 6.25rem;
}

.top__pain {
	background: #FAF9F7;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.top__strength {
	background: #ffffff;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.top__service {
	background: #FAF9F7;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.top__works {
	background: #ffffff;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.top__skills {
	background: #FAF9F7;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.top__availability {
	background: #ffffff;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.top__about {
	background: #FAF9F7;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.top__contact {
	background: #ffffff;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.about__contents-inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	margin-top: 3rem;
}

.about__image {
	aspect-ratio: 3/4;
	margin-left: auto;
	margin-right: auto;
	max-width: 17.5rem;
	overflow: hidden;
	width: 100%;
}

.about__image picture {
	display: block;
	height: 100%;
	width: 100%;
}

.about__image img {
	-o-object-fit: cover;
	-o-object-position: center top;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	width: 100%;
}

.about__name {
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
}

.about__name-kana {
	color: #8C8C8C;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	margin-top: 0.25rem;
}

.about__title {
	color: #3A9AB5;
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	margin-top: 0.5rem;
}

.about__text {
	color: #2A2828;
	font-size: 0.9375rem;
	line-height: 2;
	margin-top: 1.75rem;
}

.about__text p {
	margin-top: 1rem;
}

.about__text p:first-child {
	margin-top: 0;
}

.about__history {
	border-top: 1px solid #E8E8E8;
	margin-top: 2rem;
	padding-top: 1.5rem;
}

.about__history-title {
	color: #8C8C8C;
	font-family: "Poppins", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
}

.about__history-list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-top: 1rem;
}

.about__history-list li {
	color: #2A2828;
	font-size: 0.875rem;
	line-height: 1.7;
	padding-left: 1rem;
	position: relative;
}

.about__history-list li::before {
	background: #E8896A;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 0.625rem;
	width: 5px;
}

.about__origin {
	background: #FAF9F7;
	border-left: 3px solid #E8896A;
	margin-top: 2rem;
	padding: 1.5rem 1.25rem;
}

.about__origin-title {
	color: #E8896A;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.about__origin-text {
	color: #2A2828;
	font-size: 0.875rem;
	line-height: 1.9;
	margin-top: 0.75rem;
}

.availability__contents-inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-top: 3rem;
}

.availability__table {
	border-collapse: collapse;
	width: 100%;
}

.availability__table th {
	border-bottom: 1px solid #E8E8E8;
	color: #8C8C8C;
	font-size: 0.8125rem;
	font-weight: 500;
	padding: 0.875rem 1rem;
	text-align: left;
	vertical-align: top;
	white-space: nowrap;
	width: 40%;
}

.availability__table td {
	border-bottom: 1px solid #E8E8E8;
	color: #2A2828;
	font-size: 0.875rem;
	line-height: 1.7;
	padding: 0.875rem 1rem;
	text-align: left;
	vertical-align: top;
}

.availability__table tr:first-child th {
	border-top: 1px solid #E8E8E8;
}

.availability__table tr:first-child td {
	border-top: 1px solid #E8E8E8;
}

.availability__pricing-box {
	background: #FAF9F7;
	border: 1px solid #E8E8E8;
	border-radius: 2px;
	padding: 1.75rem;
}

.availability__pricing-title {
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 700;
}

.availability__pricing-text {
	color: #2A2828;
	font-size: 0.875rem;
	line-height: 2;
	margin-top: 1rem;
}

.availability__cta {
	margin-top: 1.5rem;
	text-align: center;
}

.btn {
	-webkit-transition: opacity 0.2s ease;
	border-radius: 2px;
	cursor: pointer;
	display: inline-block;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 0.875rem 2.25rem;
	text-align: center;
	transition: opacity 0.2s ease;
}

.btn:hover {
	opacity: 0.8;
}

.btn--primary {
	background: #E8896A;
	color: #ffffff;
}

.btn--outline {
	background: transparent;
	border: 1px solid #E8896A;
	color: #E8896A;
}

.contact__form-wrap {
	margin-left: auto;
	margin-right: auto;
	margin-top: 3rem;
	max-width: 42.5rem;
}

.contact__form {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact__field {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact__label {
	color: #111111;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.03em;
}

.required {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	align-items: center;
	background: #E8896A;
	border-radius: 2px;
	color: #ffffff;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	flex-shrink: 0;
	font-size: 0.6875rem;
	font-weight: 500;
	justify-content: center;
	margin-right: 0.375rem;
	padding: 0.125rem 0.375rem;
}

.contact__field--privacy {
	gap: 0.625rem;
}

.contact__privacy-label {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #111111;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 0.5rem;
	letter-spacing: 0.03em;
}

.contact__privacy-label .required {
	margin-left: 0;
}

.contact__checkbox-label {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.contact__checkbox-text {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #2A2828;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 0.875rem;
	gap: 0.625rem;
	padding-left: 1.875rem;
	position: relative;
}

.contact__checkbox-text::before {
	-webkit-transform: translateY(-50%);
	-webkit-transition: border-color 0.2s, background 0.2s;
	background: #ffffff;
	border: 1.5px solid #E8E8E8;
	border-radius: 3px;
	content: "";
	height: 1.25rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: border-color 0.2s, background 0.2s;
	width: 1.25rem;
}

.contact__checkbox-text::after {
	-webkit-transform: translateY(-65%) rotate(45deg);
	-webkit-transition: opacity 0.15s;
	border-bottom: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
	content: "";
	height: 0.5625rem;
	left: 0.4375rem;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-65%) rotate(45deg);
	transition: opacity 0.15s;
	width: 0.3125rem;
}

.contact__checkbox:checked ~ .contact__checkbox-text::before {
	background: #3A9AB5;
	border-color: #3A9AB5;
}

.contact__checkbox:checked ~ .contact__checkbox-text::after {
	opacity: 1;
}

.contact__checkbox.is-error ~ .contact__checkbox-text::before {
	background: #fff6f6;
	border-color: #d9534f;
}

.contact__error-msg--checkbox {
	margin-top: -0.25rem;
}

.contact__privacy-note {
	color: #8C8C8C;
	font-size: 0.75rem;
	line-height: 1.7;
	margin-top: 0.25rem;
}

.contact__input {
	-webkit-transition: border-color 0.2s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #ffffff;
	border: 1px solid #E8E8E8;
	border-radius: 2px;
	color: #2A2828;
	font-size: 0.9375rem;
	padding: 0.75rem 1rem;
	transition: border-color 0.2s;
	width: 100%;
}

.contact__input:focus {
	border-color: #E8896A;
	outline: none;
}

.contact__input::-moz-placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__input::-webkit-input-placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__input:-ms-input-placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__input::-ms-input-placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__input::placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__select-wrap {
	position: relative;
}

.contact__select-wrap::after {
	-webkit-transform: translateY(-65%) rotate(45deg);
	border-bottom: 1px solid #8C8C8C;
	border-right: 1px solid #8C8C8C;
	content: "";
	height: 8px;
	pointer-events: none;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-65%) rotate(45deg);
	width: 8px;
}

.contact__select {
	-webkit-transition: border-color 0.2s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #ffffff;
	border: 1px solid #E8E8E8;
	border-radius: 2px;
	color: #2A2828;
	font-size: 0.9375rem;
	padding: 0.75rem 1rem;
	transition: border-color 0.2s;
	width: 100%;
}

.contact__select:focus {
	border-color: #E8896A;
	outline: none;
}

.contact__textarea {
	-webkit-transition: border-color 0.2s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #ffffff;
	border: 1px solid #E8E8E8;
	border-radius: 2px;
	color: #2A2828;
	font-size: 0.9375rem;
	min-height: 10rem;
	padding: 0.75rem 1rem;
	resize: vertical;
	transition: border-color 0.2s;
	width: 100%;
}

.contact__textarea:focus {
	border-color: #E8896A;
	outline: none;
}

.contact__textarea::-moz-placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__textarea::-webkit-input-placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__textarea:-ms-input-placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__textarea::-ms-input-placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__textarea::placeholder {
	color: #bdbdbd;
	font-size: 0.875rem;
}

.contact__input.is-error,
.contact__textarea.is-error {
	background: #fff6f6;
	border-color: #d9534f;
}

.contact__input.is-error:focus,
.contact__textarea.is-error:focus {
	border-color: #d9534f;
}

.contact__error-msg {
	color: #d9534f;
	display: none;
	font-size: 0.75rem;
	margin-top: -0.125rem;
}

.contact__error-msg::before {
	content: "※ ";
}

.contact__field.is-error .contact__error-msg {
	display: block;
}

.contact__submit-error {
	color: #d9534f;
	display: none;
	font-size: 0.8125rem;
	margin-bottom: 0.75rem;
}

.contact__submit-error.is-visible {
	display: block;
}

.contact__submit {
	margin-top: 0.5rem;
	text-align: center;
}

.contact__submit-btn {
	-webkit-transition: opacity 0.2s ease;
	background: #E8896A;
	border: none;
	border-radius: 2px;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 1rem 3rem;
	transition: opacity 0.2s ease;
	width: 100%;
}

.contact__submit-btn:hover {
	opacity: 0.8;
}

.fade-in {
	-webkit-transform: translateY(20px);
	-webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.fade-in.is-visible {
	-webkit-transform: translateY(0);
	opacity: 1;
	transform: translateY(0);
}

body.is-nav-open {
	overflow: hidden;
}

.footer {
	background: #111111;
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
}

.footer__inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

.footer__logo {
	color: #ffffff;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.12em;
}

.footer__copy {
	color: #8C8C8C;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

.fv-swiper {
	border-radius: 0.5rem;
	overflow: hidden;
	width: 100%;
}

.fv-swiper__slide {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	align-items: center;
	aspect-ratio: 4/3;
	background: #FAF9F7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 1.5rem;
	width: 100%;
}

.fv-swiper__img {
	-o-object-fit: contain;
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.fv__inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.fv__label {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #3A9AB5;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-family: "Poppins", sans-serif;
	font-size: 0.6875rem;
	font-weight: 500;
	gap: 0.625rem;
	letter-spacing: 0.3em;
}

.fv__label::before {
	background: #3A9AB5;
	content: "";
	display: block;
	height: 1px;
	width: 1.75rem;
}

.fv__heading {
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(1.5rem, 2.68vw + 0.5rem, 2.625rem);
	font-weight: 700;
	line-height: 1.45;
	margin-top: 1.25rem;
}

.fv__heading-accent {
	color: #E8896A;
	position: relative;
}

.fv__sub {
	color: #2A2828;
	font-size: 0.9375rem;
	line-height: 1.8;
	margin-top: 1.25rem;
}

.fv__lead {
	color: #8C8C8C;
	font-size: 0.8125rem;
	line-height: 2;
	margin-top: 1rem;
}

.fv__cta {
	margin-top: 2.25rem;
}

.header-logo {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	line-height: 1;
}

.header-logo__img {
	display: block;
	height: auto;
	width: 8.125rem;
}

.header-logo__tagline {
	color: #8C8C8C;
	font-size: 0.625rem;
	letter-spacing: 0.08em;
	text-align: center;
}

.header {
	-webkit-transition: background 0.3s ease, -webkit-box-shadow 0.3s ease;
	background: transparent;
	left: 0;
	position: fixed;
	top: 0;
	transition: background 0.3s ease, -webkit-box-shadow 0.3s ease;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	transition: background 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
	width: 100%;
	z-index: 1000;
}

.header.is-scrolled {
	-webkit-box-shadow: 0 1px 0 #E8E8E8;
	background: #ffffff;
	box-shadow: 0 1px 0 #E8E8E8;
}

.header__inner {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 4rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 159.375rem;
	padding: 0 1.5625rem;
}

.header__pc-nav {
	display: none;
}

.nav-en {
	color: #3A9AB5;
	font-family: "Poppins", sans-serif;
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.nav-ja {
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	line-height: 1;
}

.sp-nav .nav-ja {
	font-size: 0.9375rem;
}

.header__hamburger {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	background: none;
	border: none;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
	height: 2rem;
	justify-content: center;
	padding: 0;
	width: 2rem;
}

.header__hamburger span {
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	background: #111111;
	display: block;
	height: 1px;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.header__hamburger.is-open span:nth-child(1) {
	-webkit-transform: translateY(6px) rotate(45deg);
	transform: translateY(6px) rotate(45deg);
}

.header__hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.header__hamburger.is-open span:nth-child(3) {
	-webkit-transform: translateY(-6px) rotate(-45deg);
	transform: translateY(-6px) rotate(-45deg);
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.modal-box {
	background: #ffffff;
	border-radius: 2px;
	max-width: 42.5rem;
	padding: 3rem 1.25rem 2.5rem;
	position: relative;
	width: 100%;
}

.modal-box__close {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-transition: color 0.2s;
	align-items: center;
	background: none;
	border: none;
	color: #8C8C8C;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.375rem;
	height: 2.25rem;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 1rem;
	top: 1rem;
	transition: color 0.2s;
	width: 2.25rem;
}

.modal-box__close:hover {
	color: #111111;
}

.modal-content__title {
	border-bottom: 1px solid #E8E8E8;
	color: #111111;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
}

.modal-content__dl {
	grid-gap: 0.5rem 1rem;
	display: grid;
	font-size: 0.8125rem;
	gap: 0.5rem 1rem;
	grid-template-columns: 6rem 1fr;
	margin-bottom: 1.5rem;
}

.modal-content__dl dt {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: #3A9AB5;
	border-radius: 2px;
	color: #ffffff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-weight: 500;
	padding: 0.125rem 0.5rem;
	white-space: nowrap;
}

.modal-content__dl dd {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #2A2828;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	line-height: 1.6;
}

.modal-content__dl dd a {
	-webkit-text-decoration: underline;
	color: #3A9AB5;
	text-decoration: underline;
	word-break: break-all;
}

.modal-content__dl dd a:hover {
	opacity: 0.75;
}

.modal-content__body {
	color: #2A2828;
	font-size: 0.8125rem;
	line-height: 1.9;
}

.modal-overlay {
	background: rgba(0, 0, 0, 0.6);
	bottom: 0;
	display: none;
	left: 0;
	overflow-y: auto;
	padding: 2.5rem 1.25rem;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

.modal-overlay.is-open {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
}

.modal-overlay__box {
	margin: auto;
}

body.is-modal-open {
	overflow: hidden;
}

.not-found {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	align-items: center;
	background-color: #FAF9F7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	min-height: 100svh;
	padding-top: 5rem;
}

.not-found__inner {
	padding: 3.75rem 1.25rem;
	text-align: center;
}

.not-found__code {
	color: #E8896A;
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: max(5rem, min(15vw, 8.75rem));
	font-weight: 300;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-bottom: 1.5rem;
	opacity: 0.15;
}

.not-found__title {
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: max(1.25rem, min(5vw, 2rem));
	font-weight: 700;
	line-height: 1.4;
}

.not-found__divider {
	background: #E8896A;
	height: 1px;
	margin: 1.75rem auto;
	width: 2.5rem;
}

.not-found__text {
	color: #2A2828;
	font-size: 0.9375rem;
	line-height: 2;
}

.not-found__text p + p {
	margin-top: 0.5rem;
}

.not-found__btn {
	-webkit-text-decoration: none;
	-webkit-transition: opacity 0.2s;
	background: #E8896A;
	color: #ffffff;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-top: 2.5rem;
	padding: 0.875rem 2.5rem;
	text-decoration: none;
	transition: opacity 0.2s;
}

.not-found__btn:hover {
	opacity: 0.8;
}

.pain-card {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	-webkit-transition: -webkit-box-shadow 0.2s ease;
	align-items: flex-start;
	background: #ffffff;
	border-left: 3px solid #E8896A;
	border-radius: 0 4px 4px 0;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 1.25rem;
	padding: 1.5rem 1.5rem 1.5rem 1.75rem;
	transition: -webkit-box-shadow 0.2s ease;
	transition: box-shadow 0.2s ease;
	transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.pain-card:hover {
	-webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.pain-card__num {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	color: #E8896A;
	flex-shrink: 0;
	font-family: "Poppins", sans-serif;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1;
	padding-top: 0.1875rem;
}

.pain-card__text {
	color: #2A2828;
	font-size: 0.9375rem;
	line-height: 1.8;
}

.pain-list {
	grid-gap: 1.25rem;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1fr;
	list-style: none;
}

.pain__pain-list {
	margin-top: 3rem;
}

.pain__close {
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.0625rem;
	font-weight: 500;
	margin-top: 3rem;
	text-align: center;
}

.pc-nav {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.pc-nav__list {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.pc-nav__item {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.pc-nav__item a {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-transition: color 0.2s;
	align-items: center;
	color: #111111;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column-reverse;
	gap: 0.3125rem;
	justify-content: center;
	padding: 0 1.125rem;
	transition: color 0.2s;
}

.pc-nav__item a:hover {
	color: #E8896A;
}

.pc-nav__item--cta {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 0.5rem;
}

.pc-nav__item--cta a {
	-webkit-transition: opacity 0.2s;
	background: #E8896A;
	border-radius: 2px;
	color: #ffffff;
	padding: 0.5rem 1rem;
	transition: opacity 0.2s;
}

.pc-nav__item--cta a .nav-en {
	color: rgba(255, 255, 255, 0.75);
}

.pc-nav__item--cta a:hover {
	color: #ffffff;
	opacity: 0.8;
}

.sec-head {
	overflow: hidden;
	text-align: center;
}

.sec-head__en {
	color: #E8E8E8;
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 2.25rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
}

.sec-head__title {
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 0.375rem;
}

.sec-lead {
	color: #8C8C8C;
	font-size: 0.875rem;
	line-height: 1.9;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1rem;
	max-width: 37.5rem;
	text-align: center;
}

.service-card {
	-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	-webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
	background: #ffffff;
	border-radius: 0 0 4px 4px;
	border-top: 3px solid #3A9AB5;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	padding: 2.25rem 1.75rem;
	transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	transition: box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}

.service-card:hover {
	-webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	-webkit-transform: translateY(-0.25rem);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-0.25rem);
}

.service-card__label {
	color: #3A9AB5;
	font-family: "Poppins", sans-serif;
	font-size: 0.6875rem;
	font-weight: 300;
	letter-spacing: 0.2em;
}

.service-card__title {
	border-bottom: 1px solid #E8E8E8;
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	margin-top: 0.375rem;
	padding-bottom: 1rem;
}

.service-card__lead {
	color: #2A2828;
	font-size: 0.875rem;
	line-height: 1.8;
	margin-top: 1.25rem;
}

.service-card__list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	margin-top: 1.25rem;
}

.service-card__list li {
	color: #2A2828;
	font-size: 0.8125rem;
	line-height: 1.7;
	padding-left: 0.875rem;
	position: relative;
}

.service-card__list li::before {
	color: #E8896A;
	content: "・";
	left: 0;
	position: absolute;
}

.service-card__target {
	border-top: 1px solid #E8E8E8;
	color: #8C8C8C;
	font-size: 0.75rem;
	line-height: 1.7;
	margin-top: 1.5rem;
	padding-top: 1rem;
}

.service-list {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	list-style: none;
}

.service__service-list {
	margin-top: 3rem;
}

.skills-chip {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	-webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	align-items: center;
	background: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	height: 5rem;
	justify-content: center;
	width: 5rem;
}

.skills-chip__image {
	height: 3rem;
	width: 3rem;
}

.skills-chip__image img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.skills-chip__label {
	color: #3A9AB5;
	font-family: "Poppins", sans-serif;
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1;
}

.skills-chip--lang {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	-webkit-box-shadow: none;
	background: rgba(58, 154, 181, 0.06);
	border: 1px solid rgba(58, 154, 181, 0.3);
	border-radius: 0.25rem;
	box-shadow: none;
	color: #3A9AB5;
	flex-direction: row;
	font-size: 0.8125rem;
	font-weight: 500;
	height: auto;
	letter-spacing: 0.03em;
	padding: 0.5rem 1.25rem;
	width: auto;
}

.skills-chips {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	justify-content: center;
	list-style: none;
}

.skills-chips--text {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.skills-group__chips {
	margin-top: 1rem;
}

.skills-group__label {
	border-bottom: 1px solid #E8E8E8;
	color: #8C8C8C;
	font-family: "Poppins", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.15em;
	padding-bottom: 0.75rem;
}

.skills-groups {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	max-width: 50rem;
}

.skills__skills-groups {
	margin-top: 3rem;
}

.sp-nav {
	background: #ffffff;
	display: none;
	height: calc(100vh - 4rem);
	left: 0;
	overflow-y: auto;
	padding-bottom: 2.5rem;
	padding-top: 0.5rem;
	position: fixed;
	top: 4rem;
	width: 100%;
	z-index: 999;
}

.sp-nav.is-open {
	display: block;
}

.sp-nav__list {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
}

.sp-nav__item {
	border-bottom: 1px solid #E8E8E8;
}

.sp-nav__item a {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	-ms-flex-direction: column-reverse;
	color: #111111;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column-reverse;
	gap: 0.25rem;
	padding: 0.875rem 1.25rem;
}

.sp-nav__item--cta {
	border-bottom: none;
	margin-top: 2rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.sp-nav__item--cta a {
	background: #E8896A;
	border-radius: 2px;
	color: #ffffff;
	padding: 0.875rem 1.25rem;
	text-align: center;
}

.sp-nav__item--cta a .nav-en {
	color: rgba(255, 255, 255, 0.75);
}

.sp-nav__item--cta a:hover {
	color: #ffffff;
}

.strength-card {
	-webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	-webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
	background: #ffffff;
	border-radius: 0 0 4px 4px;
	border-top: 3px solid #E8896A;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	padding: 2rem 1.75rem;
	transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
	transition: box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}

.strength-card:hover {
	-webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	-webkit-transform: translateY(-0.25rem);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
	transform: translateY(-0.25rem);
}

.strength-card__num {
	color: #E8896A;
	font-family: "Poppins", sans-serif;
	font-size: 1.75rem;
	font-weight: 300;
	line-height: 1;
}

.strength-card__title {
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	margin-top: 1rem;
}

.strength-card__sub {
	color: #E8896A;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	margin-top: 0.5rem;
}

.strength-card__text {
	color: #2A2828;
	font-size: 0.8125rem;
	line-height: 1.9;
	margin-top: 1rem;
}

.strength-list {
	grid-gap: 1.5rem;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
	list-style: none;
}

.strength__strength-list {
	margin-top: 3rem;
}

.thanks {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	align-items: center;
	background-color: #FAF9F7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	min-height: 100svh;
	padding-top: 5rem;
}

.thanks__inner {
	padding: 3.75rem 1.25rem;
	text-align: center;
}

.thanks__en {
	color: #E8896A;
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 0.6875rem;
	font-weight: 300;
	letter-spacing: 0.2em;
	margin-bottom: 1rem;
}

.thanks__title {
	color: #111111;
	font-family: "Noto Sans JP", sans-serif;
	font-size: max(1.25rem, min(5vw, 2rem));
	font-weight: 700;
	line-height: 1.4;
}

.thanks__divider {
	background: #E8896A;
	height: 1px;
	margin: 1.75rem auto;
	width: 2.5rem;
}

.thanks__text {
	color: #2A2828;
	font-size: 0.9375rem;
	line-height: 2;
}

.thanks__text p + p {
	margin-top: 0.5rem;
}

.thanks__btn {
	-webkit-text-decoration: none;
	-webkit-transition: opacity 0.2s;
	background: #E8896A;
	color: #ffffff;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-top: 2.5rem;
	padding: 0.875rem 2.5rem;
	text-decoration: none;
	transition: opacity 0.2s;
}

.thanks__btn:hover {
	opacity: 0.8;
}

.works-card {
	-webkit-transition: -webkit-box-shadow 0.2s ease;
	border: 1px solid #E8E8E8;
	border-radius: 2px;
	overflow: hidden;
	transition: -webkit-box-shadow 0.2s ease;
	transition: box-shadow 0.2s ease;
	transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.works-card:hover {
	-webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.works-card.is-hidden {
	display: none;
}

.works-card[data-modal] {
	cursor: pointer;
}

.works-card__image {
	aspect-ratio: 16/9;
	background: #FAF9F7;
	overflow: hidden;
	width: 100%;
}

.works-card__image picture {
	display: block;
	height: 100%;
	width: 100%;
}

.works-card__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.works-card__body {
	padding: 1.25rem;
}

.works-card__tags {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
}

.works-card__tag {
	border-radius: 2px;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 0.1875rem 0.625rem;
}

.works-card__tag--own {
	background: #E8896A;
	color: #ffffff;
}

.works-card__tag--agency {
	background: #111111;
	color: #ffffff;
}

.works-card__tag--end {
	background: #3A9AB5;
	color: #ffffff;
}

.works-card__tag--practice {
	background: #E8E8E8;
	color: #8C8C8C;
}

.works-card__title {
	color: #111111;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 0.75rem;
}

.works-card__meta {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.625rem;
}

.works-card__tech {
	background: rgba(58, 154, 181, 0.08);
	border-radius: 2px;
	color: #3A9AB5;
	font-size: 0.75rem;
	padding: 0.125rem 0.5rem;
}

.works-card__tech--process {
	background: rgba(201, 123, 140, 0.08);
	color: #E8896A;
}

.works-card__period {
	color: #8C8C8C;
	font-size: 0.75rem;
	margin-top: 0.375rem;
}

.works-filter {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	justify-content: center;
}

.works-filter__btn {
	-webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
	background: #FAF9F7;
	border: 1px solid #E8E8E8;
	border-radius: 2px;
	color: #2A2828;
	cursor: pointer;
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	padding: 0.5rem 1.375rem;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.works-filter__btn:hover {
	background: #E8896A;
	border-color: #E8896A;
	color: #ffffff;
}

.works-filter__btn.is-active {
	background: #E8896A;
	border-color: #E8896A;
	color: #ffffff;
}

.works-grid {
	grid-gap: 1.75rem;
	display: grid;
	gap: 1.75rem;
	grid-template-columns: 1fr;
	list-style: none;
}

.works__works-filter {
	margin-top: 3rem;
}

.works__works-grid {
	margin-top: 2.5rem;
}

.works__note {
	color: #8C8C8C;
	font-size: 0.75rem;
	line-height: 1.8;
	margin-top: 2.5rem;
	text-align: center;
}

@media (prefers-reduced-motion: no-preference) {

html {
	scroll-behavior: smooth;
}

}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.4545454545vw;
}

.top__fv {
	padding-bottom: 7.5rem;
	padding-top: 9.25rem;
}

.top__pain {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.top__strength {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.top__service {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.top__works {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.top__skills {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.top__availability {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.top__about {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.top__contact {
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
}

.about__contents-inner {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	flex-direction: row;
	gap: 4rem;
	margin-top: 4rem;
}

.about__photo {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 17.5rem;
	-ms-flex: 0 0 17.5rem;
	flex: 0 0 17.5rem;
}

.about__image {
	margin-left: 0;
	margin-right: 0;
}

.about__content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.about__name {
	font-size: 1.625rem;
}

.availability__contents-inner {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	flex-direction: row;
	gap: 3.75rem;
	margin-top: 4rem;
}

.availability__table-wrap {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 55%;
	-ms-flex: 1 1 55%;
	flex: 1 1 55%;
}

.availability__pricing {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 45%;
	-ms-flex: 1 1 45%;
	flex: 1 1 45%;
}

.availability__cta {
	text-align: left;
}

.btn {
	font-size: 1rem;
	padding: 1rem 3rem;
}

.contact__form-wrap {
	margin-top: 4rem;
}

.contact__submit-btn {
	font-size: 1rem;
	min-width: 17.5rem;
	width: auto;
}

.footer__inner {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	flex-direction: row;
	justify-content: space-between;
	text-align: left;
}

.fv__inner {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	flex-direction: row;
	gap: 4.5rem;
}

.fv__content {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 55%;
	-ms-flex: 1 1 55%;
	flex: 1 1 55%;
}

.fv__heading {
	margin-top: 1.5rem;
}

.fv__sub {
	font-size: 1.0625rem;
	margin-top: 1.5rem;
}

.fv__lead {
	font-size: 0.875rem;
	margin-top: 1.25rem;
}

.fv__cta {
	margin-top: 3rem;
}

.fv__swiper {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 45%;
	-ms-flex: 1 1 45%;
	flex: 1 1 45%;
}

.header-logo__img {
	width: 9.375rem;
}

.header-logo__tagline {
	font-size: 0.6875rem;
}

.header__inner {
	height: 4.5rem;
}

.inner {
	max-width: 1150px;
	padding-left: 25px;
	padding-right: 25px;
}

.modal-box {
	padding: 3.5rem 3rem 3rem;
}

.modal-content__title {
	font-size: 1.125rem;
}

.modal-content__dl {
	grid-template-columns: 7rem 1fr;
}

.pain-list {
	gap: 1.5rem;
	grid-template-columns: repeat(2, 1fr);
}

.pain__pain-list {
	margin-top: 4rem;
}

.pain__close {
	font-size: 1.25rem;
	margin-top: 4rem;
}

.sec-head__en {
	font-size: 5rem;
}

.sec-head__title {
	font-size: 1.875rem;
	margin-top: 0.625rem;
}

.sec-lead {
	font-size: 0.9375rem;
	margin-top: 1.25rem;
}

.service-card__title {
	font-size: 1.25rem;
}

.service-list {
	gap: 1.75rem;
	grid-template-columns: repeat(3, 1fr);
}

.service__service-list {
	margin-top: 4rem;
}

.skills-groups {
	gap: 3rem;
}

.skills__skills-groups {
	margin-top: 4rem;
}

.strength-card__title {
	font-size: 1.0625rem;
}

.strength-list {
	gap: 1.75rem;
	grid-template-columns: repeat(2, 1fr);
}

.strength__strength-list {
	margin-top: 4rem;
}

.works-grid {
	grid-template-columns: repeat(2, 1fr);
}

.works__works-filter {
	margin-top: 4rem;
}

.works__works-grid {
	margin-top: 3.5rem;
}

}

@media screen and (min-width: 1024px) {

.header__pc-nav {
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.header__hamburger {
	display: none;
}

.sp-nav {
	display: none !important;
}

.strength-list {
	grid-template-columns: repeat(4, 1fr);
}

}

@media (min-width: 1100px) {

html {
	font-size: 16px;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


/*# sourceMappingURL=style.css.map */
