:root {
	--orange: #ffa325;
	--orange-deep: #eb6100;
	--orange-dark: #8f3a00;
	--orange-soft: #f4f6f8;
	--amber: #ffd45f;
	--cream: #f8f9fb; /* 白を主役にするための、ごく薄いグレー背景 */
	--mint: #0fae73;
	--cta-red: #d92518;   /* 重要CTA（無料見積り）の差し色：少し深めの朱赤 */
	--price-red: #d34715; /* 価格表示：オレンジ寄りで本体と調和 */
	--navy: #2f4257;       /* ラボ型プランの基調：派手な青ではなく落ち着いた紺 */
	--navy-deep: #243343;  /* 紺の濃いトーン */
	--navy-soft: #eef1f4;  /* 紺の淡い背景 */
	--ink: #151515;
	--text: #242424;
	--muted: #6b6b6b;
	--line: #e5e7eb;
	--white: #fff;
	--shadow: 0 12px 32px rgba(15, 23, 42, 0.09);
	--shadow-soft: 0 6px 18px rgba(15, 23, 42, 0.06);
	--radius: 8px;
	--pill: 999px;
	--container: 1120px;
	--font: 'Noto Sans JP';
	/* 文字の強弱階層（叫ばせない・緩急をつける） */
	--w-display: 800; /* 大見出し h1/h2 */
	--w-heading: 700; /* 小見出し h3・ラベル */
	--w-strong: 600;  /* 強調・ボタン */
	--w-body: 500;    /* 本文 */
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

html.is-anchor-jumping {
	scroll-behavior: auto !important;
}

body {
	margin: 0;
	min-width: 320px;
	color: var(--text);
	background: var(--white);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	/* overflow-x: hidden; */
}

html.is-menu-open,
body.is-menu-open {
	overflow: hidden !important;
}

/* Disable background scrolling when modal is open */
html.is-member-modal-open,
body.is-member-modal-open {
	overflow: hidden !important;
}

body.is-member-modal-open {
	/* Compensate layout width to prevent content shift when scrollbar is hidden */
	padding-right: var(--scrollbar-width, 0px); 
}

/* Prevent fixed header from shifting when scrollbar is removed */
html.is-member-modal-open .site-header {
	padding-right: var(--scrollbar-width, 0px);
}

img,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

p,
li,
td,
th,
a,
button {
	overflow-wrap: anywhere;
	word-break: normal;
}

h1,
h2,
h3 {
	overflow-wrap: normal;
	word-break: auto-phrase;
	line-break: strict;
}

.sp{
	display: none;
}
.ovh{
	overflow: hidden;
}

.section-title span{
	word-break: auto-phrase;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	overflow: hidden;
	white-space: nowrap;
}

.container {
	width: calc(100% - 48px);
	max-width: var(--container);
	margin: 0 auto;
}

.container--narrow {
	width: calc(100% - 48px);
	max-width: 820px;
}

.wrap{
	max-width: 1000px;
	width: calc(100% - 48px);
	margin: 0 auto;
}

.bottom-fixed-cta {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 70;
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding: 12px;
	background: rgba(28, 28, 28, 0.76);
	box-shadow: 0 -12px 24px rgba(28, 28, 28, 0.18);
	transform: translateY(110%);
	transition: transform 180ms ease;
	pointer-events: none;
}

body.has-scrolled .bottom-fixed-cta {
	transform: translateY(0);
	pointer-events: auto;
}

.bottom-fixed-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 58px;
	padding: 10px 14px;
	border-radius: 8px;
	font-weight: 800;
	line-height: 1.2;
}

.bottom-fixed-cta__button span {
	word-break: keep-all;
	overflow-wrap: normal;
}

.bottom-fixed-cta__button--contact {
	color: #fff;
	background: var(--cta-red);
}

.bottom-fixed-cta__button--contact img {
	filter: brightness(0) invert(1);
}

.bottom-fixed-cta__button--chatwork {
	color: var(--ink);
	background: #fff;
	border: 2px solid var(--cta-red);
}

.section-white,
.section-soft,
.section-orange,
.section-dark {
	position: relative;
	padding: 44px 0;
}

.section-white {
	background: var(--white);
}

.section-soft {
	background: var(--cream);
}

.section-orange {
	color: var(--ink);
	background: var(--cream);
	overflow: hidden;
}

.section-dark {
	color: var(--white);
	background: var(--ink);
	overflow: hidden;
}

.section-orange::after,
.section-dark::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(94, 42, 0, 0.10) 0%, transparent 18%, transparent 82%, rgba(94, 42, 0, 0.12) 100%);
}

.section-orange::after {
	content: none;
}


.cta-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 28px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	min-height: 56px;
	padding: 13px 28px;
	border: 2px solid transparent;
	border-radius: var(--pill);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	box-shadow: 0 8px 16px rgba(72, 47, 26, 0.1);
	transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease, filter 200ms ease;
}

.button img {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	margin-right: 14px;
	object-fit: contain;
}

.button::after {
	content: "";
	width: 10px;
	height: 10px;
	margin-left: 22px;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	transform: rotate(45deg);
	transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(72, 47, 26, 0.16);
}

.button:hover::after,
.button:focus-visible::after {
	transform: rotate(45deg) translate(2px, -2px);
}

.button--primary {
	color: var(--white);
	background: var(--orange-deep);
	border-color: rgba(235, 97, 0, 0.18);
}

.button--contact {
	color: var(--white);
	background: var(--cta-red);
	border-color: var(--cta-red);
}

.button--contact img {
	filter: brightness(0) invert(1);
}

.button--chatwork {
	color: var(--ink);
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(28, 28, 28, 0.16);
}

.button--white {
	color: var(--orange-dark);
	background: #fff;
	border-color: rgba(143, 58, 0, 0.1);
}

.button--dark {
	color: var(--white);
	background: linear-gradient(180deg, #ffa325 0%, #eb6100 100%);
}

.button--blue {
	color: var(--white);
	background: var(--navy);
	border-color: var(--navy);
}

.spark {
	position: absolute;
	width: 20px;
	height: 20px;
	color: var(--white);
}

.spark::before,
.spark::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: currentColor;
	border-radius: 999px;
}

.spark::before {
	width: 4px;
	height: 20px;
}

.spark::after {
	width: 20px;
	height: 4px;
}

.spark--1 {
	top: 20%;
	left: 8%;
}

.spark--2 {
	right: 2%;
	bottom: 20%;
}

.section-title {
	margin: 0 auto 34px;
	text-align: center;
}

.section-title p {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin: 0 0 6px;
	color: var(--orange);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.18em;
}

.section-title p::before,
.section-title p::after {
	content: "";
	width: 24px;
	height: 2px;
	background: currentColor;
	opacity: 0.65;
}

.section-title h2 {
	margin: 0;
	color: var(--ink);
	font-size: 33px;
	font-weight: 800;
	line-height: 1.4;
}

.section-title span {
	display: block;
	margin-top: 10px;
	color: var(--muted);
	font-size: 16px;
	font-weight: 500;
}
.section-title span.cl-orange{
	color: var(--orange);
	margin-top: 5px;
	font-size: 14px;
}

.section-title small {
	display: block;
	margin-top: 12px;
	color: #5f6670;
	font-size: clamp(14px, 1.35vw, 18px);
	font-weight: 600;
	line-height: 1.7;
}

.section-title--light p,
.section-title--light h2,
.section-title--light span {
	color: var(--white);
}

.slider-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--orange);
	box-shadow: var(--shadow-soft);
	transform: translateY(-50%);
}

.slider-arrow::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 12px;
	height: 12px;
	margin: auto;
	border-top: 3px solid var(--white);
	border-right: 3px solid var(--white);
}

.slider-arrow--prev {
	left: -22px;
}

.slider-arrow--prev::before {
	transform: rotate(-135deg);
}

.slider-arrow--next {
	right: -22px;
}

.slider-arrow--next::before {
	transform: rotate(45deg);
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 0px;
	margin-top: 24px;
}

.slider-dots span {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	
	cursor: pointer;
	position: relative;
}
.slider-dots span:before{
	content: '';
	width: 12px;
	height: 12px;
	background: #ddd5ce;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.slider-dots span.is-active:before {
	background: var(--orange);
}

.cta-row--stack {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(14px, 1.6vw, 22px);
	margin-top: clamp(20px, 2.2vw, 32px);
}

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes floatVisual {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes typeCaret {
	0%,
	48% {
		opacity: 1;
	}

	49%,
	100% {
		opacity: 0;
	}
}
.pc{
	display: none;
}
@media screen and (min-width: 768px){
	.pc{
		display: block;
	}
	.sp{
		display: none;
	}
	.telhref{
		pointer-events: none;
	}

}

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

	.bottom-fixed-cta {
		display: grid;
		transform: none;
		pointer-events: auto;
	}

}

@media screen and (min-width: 561px) and (max-width: 720px) {

	body {
		padding-bottom: 0;
	}

}

@media screen and (min-width: 481px) and (max-width: 560px) {

	body {
		padding-bottom: 0;
	}

}

@media screen and (max-width: 1180px) and (min-width: 1081px) {
	
	.spark--2 {
		right: 0;
	}

}

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

	.container,
	.container--narrow {
		width: calc(100% - 30px);
		max-width: 720px;
		margin-right: auto;
		margin-left: auto;
	}

	.section-white,
	.section-soft,
	.section-orange,
	.section-dark {
		padding: 43px 0;
	}

	.button {
		width: 100%;
		min-width: 0;
		min-height: 58px;
		padding: 14px 22px;
		font-size: 16px;
	}

	.button::after {
		margin-left: 14px;
	}

	.section-title h2 {
		font-size: clamp(24px, 6.8vw, 32px);
	}

	.slider-arrow {
		display: none;
	}
	
}

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

	.sp{
		display: block;
	}

	.wrap{
		width: 92vw;
	}

}

@media screen and (max-width: 480px) {
	
	.container,
	.container--narrow,
	.cta-row,
	.stats-card {
		width: calc(100vw - 8vw);
		max-width: calc(100vw - 8vw);
	}

	.button {
		flex: 0 0 calc(100vw - 8vw);
		max-width: calc(100vw - 8vw);
	}

	.bottom-fixed-cta {
		gap: 8px;
		padding: 10px;
	}

	.bottom-fixed-cta__button {
		flex-direction: column;
		gap: 5px;
		min-height: 68px;
		padding: 8px 6px;
		text-align: center;
		font-size: 13px;
	}

	.bottom-fixed-cta__button img {
		width: 24px;
		height: 24px;
	}

}

@media screen and (max-width: 460px) {
	
	.container,
	.container--narrow,
	.cta-row{
		width: calc(100vw - 30px);
		max-width: calc(100vw - 30px);
	}

	.section-title span {
		font-size: 14px;
		line-height: 1.6;
	}

	.button {
		flex: 0 0 calc(100vw - 30px);
		max-width: calc(100vw - 30px);
	}

}

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

	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

}



/* =========================================================
	HEADER
	========================================================= */

.site-header {
	position: fixed;
	top: clamp(12px, 1.5vw, 20px);
	right: 0;
	left: 0;
	z-index: 50;
	color: var(--ink);
	background: transparent;
	border-bottom: 0;
	pointer-events: none;
	transition: transform 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
	color: var(--ink);
	background: transparent;
	border-bottom: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.site-header.is-open {
	position: fixed;
	color: var(--ink);
	background: transparent;
	border-bottom: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.site-header > .container {
	width: calc(100% - 48px);
	max-width: min(1760px, calc(100% - 48px));
	margin: 0 auto;
}

.site-header.is-scrolled > .container,
.site-header.is-open > .container {
	width: calc(100% - 48px);
	max-width: min(1760px, calc(100% - 48px));
	margin: 0 auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: clamp(68px, 5vw, 84px);
	gap: clamp(12px, 1vw, 24px);
	padding: 10px clamp(14px, 1vw, 24px);
	border: 1px solid rgba(15, 23, 42, 0.10);
	border-radius: var(--pill);
	background: #fff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
	backdrop-filter: blur(16px);
	pointer-events: auto;
}

.site-header.is-scrolled .site-header__inner,
.site-header.is-open .site-header__inner {
	min-height: clamp(64px, 4.4vw, 76px);
	gap: clamp(12px, 1vw, 24px);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.13);
}

.brand,
.logo-line {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	line-height: 1.2;
}

.site-header .brand {
	flex: 0 0 auto;
	transform: none;
}

.brand img {
	width: clamp(132px, 9vw, 178px);
	height: auto;
	max-width: 100%;
}

.brand__mark {
	position: relative;
	display: inline-block;
	width: 34px;
	height: 22px;
}

.brand__mark::before,
.brand__mark::after {
	content: "";
	position: absolute;
	top: 2px;
	width: 19px;
	height: 19px;
	border: 5px solid currentColor;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.brand__mark::before {
	left: 1px;
}

.brand__mark::after {
	right: 1px;
	transform: rotate(135deg);
}

.site-nav {
	position: static;
	z-index: auto;
	display: flex;
	flex: 1 1 auto;
	align-self: center;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(12px, 1.35vw, 22px);
	margin-left: auto;
	font-weight: 700;
}

.site-nav a {
	transition: opacity 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--orange-deep);
}

.site-nav__links {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-between;
	gap: clamp(8px, 1vw, 26px);
	min-width: 0;
}

.site-nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 2px;
	color: #202020;
	font-size: clamp(11px, 1.25vw, 16px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
	white-space: nowrap;
}

.site-nav__br {
	display: none;
}

.site-nav__link::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	height: 2px;
	border-radius: var(--pill);
	background: currentColor;
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav__link.is-active::after,
.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.site-nav__actions {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
}

.site-nav__item {
	position: relative;
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 54px;
	padding: 8px 18px;
	border: 1px solid rgba(28, 28, 28, 0.16);
	border-radius: var(--pill);
	color: var(--ink);
	text-align: center;
	line-height: 1.25;
	background: rgba(255, 255, 255, 0.78);
}

.site-nav__item span {
	font-size: clamp(12px, 0.86vw, 15px);
	font-weight: 800;
	letter-spacing: 0;
}

.site-nav__item em {
	margin-top: 10px;
	font-size: clamp(10px, 0.82vw, 13px);
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.site-nav__item.is-active {
	color: var(--orange);
}

.site-nav__item.is-active::after {
	content: "";
	position: absolute;
	right: 14px;
	bottom: 0;
	left: 14px;
	height: 7px;
	background: var(--orange);
}

.site-nav__item--contact {
	min-width: clamp(132px, 9vw, 158px);
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 10px;
	color: #fff;
	background: var(--cta-red);
	border-left: 0;
	border-color: var(--cta-red);
}

.site-nav__item--contact img {
	justify-self: center;
	width: 30px;
	height: 30px;
	filter: brightness(0) invert(1);
}

.site-nav__item--contact,
.site-nav__item--contact span,
.site-nav__item--contact:hover,
.site-nav__item--contact:focus-visible,
.site-nav__item--contact:hover span,
.site-nav__item--contact:focus-visible span {
	color: #fff;
}

.site-nav a.site-nav__item--contact {
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.site-nav__item--contact:hover,
.site-nav__item--contact:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(27, 58, 92, 0.2);
}

.site-nav__item--chatwork {
	min-width: clamp(132px, 9vw, 158px);
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 10px;
}

.site-nav__item--chatwork img {
	justify-self: center;
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.site-nav__item--chatwork span {
	font-size: clamp(12px, 0.84vw, 15px);
}

.site-nav__item:hover,
.site-nav__item:focus-visible {
	transform: translateY(-1px);
}

.menu-button {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	color: inherit;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: 0 8px 18px rgba(28, 28, 28, 0.06);
}

.menu-button span:first-child,
.menu-button::before,
.menu-button::after {
	content: "";
	display: block;
	width: 18px;
	height: 2px;
	border-radius: var(--pill);
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button {
	flex-direction: column;
	gap: 4px;
}

.menu-button[aria-expanded="true"] span:first-child {
	opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
	transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
	transform: translateY(-6px) rotate(-45deg);
}

@media screen and (min-width: 1081px) {
	
	.site-header.is-scrolled .site-nav,
	.site-header.is-open .site-nav {
		display: flex;
	}

}

@media screen and (max-width: 1300px) and (min-width: 901px) {

	.site-nav__link--stack {
		flex-direction: column;
		gap: 1px;
		line-height: 1.05;
		text-align: center;
	}

	.site-nav__link--stack .site-nav__br {
		display: block;
	}

}

@media screen and (max-width: 1180px) and (min-width: 901px) {

	.site-header > .container,
	.site-header.is-scrolled > .container,
	.site-header.is-open > .container {
		width: calc(100% - 32px);
		max-width: calc(100% - 32px);
	}

	.brand img {
		width: clamp(132px, 14vw, 154px);
	}

	.site-header__inner,
	.site-header.is-scrolled .site-header__inner,
	.site-header.is-open .site-header__inner {
		gap: 12px;
		padding-inline: 14px;
	}

	.site-nav {
		gap: 12px;
	}

	.site-nav__links {
		gap: 9px;
	}

	.site-nav__actions {
		gap: 8px;
	}

	.site-nav__item {
		min-height: 52px;
		padding-inline: 12px;
	}

	.site-nav__item--contact,
	.site-nav__item--chatwork {
		min-width: 120px;
		grid-template-columns: 26px 1fr;
	}

	.site-nav__item--contact img,
	.site-nav__item--chatwork img {
		width: 26px;
		height: 26px;
	}

}

@media screen and (max-width: 1080px) and (min-width: 901px) {

	.site-nav__link {
		font-size: 10px;
	}

}

@media screen and (max-width: 980px) and (min-width: 901px){

	.site-nav__item--contact, .site-nav__item--chatwork{
		min-width: 12vw;
	}

	.site-nav__item span{
		font-size: clamp(10px, 0.86vw, 12px);
	}

	.site-nav__item--contact, .site-nav__item--chatwork{
		grid-template-columns: 2vw 1fr;
	}

	.site-nav__item--contact img, .site-nav__item--chatwork img{
		width: 2vw;
		height: 2vw;
	}

}

@media screen and (max-width: 900px) {
	
	.site-header {
		top: 10px;
	}

	.site-header > .container,
	.site-header.is-scrolled > .container,
	.site-header.is-open > .container {
		width: calc(100% - 24px);
		max-width: calc(100% - 24px);
	}

	.site-header__inner,
	.site-header.is-scrolled .site-header__inner,
	.site-header.is-open .site-header__inner {
		min-height: 62px;
		padding: 8px 10px 8px 14px;
		gap: 10px;
	}

	.site-header .brand {
		transform: none;
	}

	.brand img {
		width: clamp(136px, 40vw, 176px);
	}

	.menu-button {
		display: inline-flex;
		flex: 0 0 auto;
		background: #f4f6f8;
		box-shadow: none;
	}

	.site-nav {
		position: fixed;
		top: 82px;
		right: 12px;
		left: 12px;
		z-index: 85;
		display: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 14px;
		width: auto;
		margin: 0;
		padding: 14px;
		border: 1px solid rgba(15, 23, 42, 0.10);
		border-radius: 20px;
		color: var(--ink);
		background: var(--white);
		box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav__links {
		display: grid;
		gap: 0;
		justify-content: stretch;
	}

	.site-nav__link {
		justify-content: flex-start;
		min-height: 44px;
		padding: 0 6px;
		border-bottom: 1px solid var(--line);
		font-size: 15px;
	}

	.site-nav__link::after {
		display: none;
	}

	.site-nav__link:last-child {
		border-bottom: 0;
	}

	.site-nav__actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.site-nav__item {
		align-items: center;
		min-width: 0;
		min-height: 54px;
		padding: 8px 12px;
		border-left: 1px solid rgba(28, 28, 28, 0.16);
		text-align: center;
	}

	.site-nav__item span {
		font-size: 13px;
	}

	.site-nav__item em {
		margin-top: 4px;
		font-size: 10px;
	}

	.site-nav__item.is-active::after {
		right: auto;
		bottom: 9px;
		left: 0;
		width: 4px;
		height: calc(100% - 18px);
	}

	.site-nav__item--contact {
		color: #fff;
		border-radius: var(--pill);
	}

	.site-nav__item--chatwork {
		display: grid;
		grid-template-columns: 28px 1fr;
		gap: 10px;
	}

	.site-nav__item--chatwork img {
		width: 28px;
		height: 28px;
	}

}

@media screen and (min-width: 721px) and (max-width: 900px) {

	.site-header > .container,
	.site-header.is-scrolled > .container,
	.site-header.is-open > .container {
		width: calc(100% - 28px);
		max-width: calc(100% - 28px);
	}

	.site-header__inner,
	.site-header.is-scrolled .site-header__inner,
	.site-header.is-open .site-header__inner {
		min-height: 58px;
		padding: 6px 12px;
	}

	.brand img {
		width: clamp(132px, 19vw, 150px);
	}

}

@media screen and (min-width: 561px) and (max-width: 720px){

	.site-header {
		top: 8px;
	}

	.site-header > .container,
	.site-header.is-scrolled > .container,
	.site-header.is-open > .container {
		width: calc(100% - 20px);
		max-width: calc(100% - 20px);
	}

	.site-header__inner,
	.site-header.is-scrolled .site-header__inner,
	.site-header.is-open .site-header__inner {
		min-height: 54px;
		padding: 6px 8px 6px 12px;
	}

	.brand img {
		width: clamp(128px, 22vw, 138px);
	}

	.menu-button {
		width: 42px;
		height: 42px;
	}

	.site-nav {
		top: 68px;
	}

}

@media screen and (min-width: 481px) and (max-width: 560px){

	.site-header {
		top: 8px;
	}

	.site-header > .container,
	.site-header.is-scrolled > .container,
	.site-header.is-open > .container {
		width: calc(100% - 20px);
		max-width: calc(100% - 20px);
	}

	.site-header__inner,
	.site-header.is-scrolled .site-header__inner,
	.site-header.is-open .site-header__inner {
		min-height: 54px;
		padding: 6px 8px 6px 12px;
		gap: 8px;
	}

	.brand img {
		width: clamp(128px, 22vw, 138px);
	}

	.menu-button {
		width: 42px;
		height: 42px;
	}

	.site-nav {
		top: 68px;
	}

}

@media screen and (max-width: 480px){
	
	.site-header {
		top: 8px;
	}

	.site-header > .container,
	.site-header.is-scrolled > .container,
	.site-header.is-open > .container {
		width: calc(100% - 20px);
		max-width: calc(100% - 20px);
	}

	.site-header__inner,
	.site-header.is-scrolled .site-header__inner,
	.site-header.is-open .site-header__inner {
		min-height: 50px;
		padding: 5px 7px 5px 11px;
	}

	.brand img {
		width: clamp(116px, 33vw, 126px);
	}

	.menu-button {
		width: 40px;
		height: 40px;
	}

	.site-nav {
		top: 64px;
	}
	
	.site-header__inner {
		min-height: 64px;
	}

	.site-nav {
		top: 64px;
	}

	.brand,
	.logo-line {
		font-size: 14px;
	}

	.brand img {
		width: min(168px, 46vw);
	}

}

@media (max-width: 460px){

	.brand__mark {
		width: 28px;
		height: 18px;
	}

	.brand__mark::before,
	.brand__mark::after {
		width: 16px;
		height: 16px;
		border-width: 4px;
	}

}


/* =========================================================
	HERO
	========================================================= */
.hero-consult{
	padding: 160px 0 80px;
	overflow-x: hidden;
}

.hero-consult .container{
	max-width: 1200px;
}

.hero-consult__row{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.hero-visual{
	max-width: 630px;
	width: 53%;
	margin-bottom: 80px;
}

.hero-visual__mark{
	width: 692px;
	height: 99px;
	background-image: url('../img/hero/mark.png');
	background-repeat: no-repeat;
	background-size: 100%;
	color: #fff;
	margin: 0 0 7px -55px;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
	padding: 13px 0 0 36px;
}

.hero-visual__title{
	font-size: 46px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.35;
	margin: 0 0 25px;
}

.hero-visual__title span{
	/* color: #fd0a1b; */
	color: #000;
	font-size: 80px;
	position: relative;
}

.hero-visual__title--catch{
	font-size: 16px;
	letter-spacing: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: -1px;
	text-align: center;
}

.hero-visual__title--catch:before{
	content: '';
	width: 1px;
	height: 18px;
	/* background: #fd0a1b; */
	background: #000;
	position: absolute;
	left: 16px;
	top: 4px;
	transform: rotate(-24deg);
}

.hero-visual__title--catch:after{
	content: '';
	width: 1px;
	height: 18px;
	/* background: #fd0a1b; */
	background: #000;
	position: absolute;
	right: 16px;
	top: 4px;
	transform: rotate(24deg);
}

.hero-visual__checklist{
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 40px;
	letter-spacing: 0;
}

.hero-visual__checklist li{
	position: relative;
	padding-left: 44px;
	list-style-type: none;
}

.hero-visual__checklist li:before{
	content: '';
	width: 25px;
	height: 25px;
	background-image: url('../img/hero/hero_check.png');
	background-repeat: no-repeat;
	background-size: 100%;
	position: absolute;
	left: 8px;
	top: 8px;
}

.hero-visual__checklist li span{
	/* color: #fd0a1b; */
	color: #000;
	background: #fffa76;
	display: inline;
	padding: 1px 7px 2px;
}

.hero-image{
	max-width: 555px;
	width: 47%;
	padding: 56px 37px 0;
}

.hero-image__img{
	max-width: 463px;
	width: 100%;
	margin: 0 auto;
}

.consult-hero,
.consult-hero *{
	cursor: pointer;
}

.consult-panel {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 8px;
	width: 100%;
	min-height: 170px;
	padding: 15px 18px;
	border: 1px solid rgba(32, 37, 44, 0.09);
	border-radius: 16px;
	color: inherit;
	background: #fff;
	box-shadow: 0 14px 30px rgba(39, 47, 58, 0.08);
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.consult-panel:hover,
.consult-panel:focus-visible {
	border-color: rgba(235, 97, 0, 0.24);
	box-shadow: 0 18px 38px rgba(39, 47, 58, 0.1);
	transform: translateY(-1px);
}

.consult-composer__brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	color: #13202f;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.consult-composer__brand img {
	width: 26px;
	height: 26px;
}

.consult-composer__body {
	position: relative;
	display: block;
	padding: 2px 52px 34px 0;
}

.consult-typed {
	display: block;
	height: calc(2 * 1.65em);
	/* color: #8b95a3; */
	color: #000;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.65;
	overflow-wrap: anywhere;
}

.consult-typed::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 1.25em;
	margin-left: 4px;
	background: #5f6977;
	vertical-align: -0.2em;
	animation: typeCaret 900ms steps(1, end) infinite;
}

.consult-composer__tools {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.consult-send {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #c0c7d0;
	background: #f4f6f8;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
}

.hero-button{
	margin: -14px 0 0;
	max-width: 600px;
	width: 100%;
}

.hero-button a{
	display: block;
	color: #fff;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0;
	border-radius: 50px;
	position: relative;
	z-index: 0;
	padding: 29px 0 17px;
	box-shadow: 0 10px 15px rgba(0,0,0,0.3);
	transition: 0.3s all ease;
}

.hero-button a:hover{
	transform: translateY(6px);
}

.hero-button a:before{
	content: '';
	background: #d92518;
	box-shadow: 0 6px 0 #9c190f;
	border-radius: 50px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	transition: 0.3s all ease;
}

.hero-button a:hover:before{
	box-shadow: 0 0px 0 #9c190f;
}

.hero-button a .arrow{
	display: inline-block;
	width: 25px;
	margin-left: 15px;
	position: relative;
	top: -2px;
}

.hero-button a .balloon{
	width: 278px;
	height: 83px;
	background-image: url('../img/hero/hero_balloon.png');
	background-repeat: no-repeat;
	background-size: 100%;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0;
	color: #423e3b;
	padding-top: 12px;
	position: absolute;
	top: -41px;
	left: calc(50% - 147px);
	z-index: 1;
	animation: fluffy 3s infinite;
}

.hero-button a .balloon:before{
	content: '';
	width: 1px;
	height: 22px;
	background: #423e3b;
	position: absolute;
	left: 47px;
	top: 20px;
	transform: rotate(-24deg);
}

.hero-button a .balloon:after{
	content: '';
	width: 1px;
	height: 22px;
	background: #423e3b;
	position: absolute;
	right: 47px;
	top: 20px;
	transform: rotate(24deg);
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

	.hero-visual__mark{
		margin-left: 0;
	}

}
@media screen and (max-width: 1200px) and (min-width: 901px) {

	.hero-visual{
		max-width: 52.5vw;
		margin-bottom: 6.7vw;
	}

	.hero-visual__mark{
		width: 57.7vw;
		height: 8.3vw;
		margin: 0 0 0.6vw;
		font-size: 2.2vw;
		padding: 1.1vw 0 0 3vw;
	}

	.hero-visual__title{
		font-size: 3.8vw;
		margin-bottom: 2.1vw;
	}

	.hero-visual__title span{
		font-size: 6.7vw;
	}

	.hero-visual__title--catch{
		font-size: 1.3vw;
	}

	.hero-visual__title--catch:before{
		height: 1.5vw;
		left: 1.3vw;
		top: 0.3vw;
	}

	.hero-visual__title--catch:after{
		height: 1.5vw;
		right: 1.3vw;
		top: 0.3vw;
	}

	.hero-visual__checklist{
		font-size: 1.6vw;
	}

	.hero-visual__checklist li{
		padding-left: 3.7vw;
	}

	.hero-visual__checklist li:before{
		width: 2.1vw;
		height: 2.1vw;
		left: 0.7vw;
		top: 0.8vw;
	}

	.hero-visual__checklist li span{
		padding: 0.1vw 0.6vw 0.2vw;
	}

	.hero-image{
		max-width: 46.3vw;
		padding: 4.7vw 0 0 3.1vw;
	}

	.hero-image__img{
		max-width: 38.6vw;
	}

	.hero-button{
		margin-top: -1.2vw;
		max-width: 50vw;
	}

	.hero-button a{
		font-size: 2.7vw;
		border-radius: 4.2vw;
		padding: 2.4vw 0 1.4vw;
	}

	.hero-button a:before{
		border-radius: 4.2vw;
	}

	.hero-button a .arrow{
		width: 2.1vw;
		margin-left: 1.3vw;
		top: -0.2vw;
	}

	.hero-button a .balloon{
		width: 23.2vw;
		height: 6.9vw;
		font-size: 1.7vw;
		padding-top: 1vw;
		top: -3.4vw;
		left: calc(50% - 12.3vw);
	}

	.hero-button a .balloon:before{
		height: 1.8vw;
		left: 3.9vw;
		top: 1.7vw;
	}

	.hero-button a .balloon:after{
		height: 1.8vw;
		right: 3.9vw;
		top: 1.7vw;
	}

}
@media screen and (max-width: 900px) {
	
	.hero-consult__row{
		display: block;
		margin-bottom: 80px;
	}

	.hero-visual{
		max-width: none;
		width: 100%;
		margin-bottom: 50px;
	}

	.hero-image{
		max-width: none;
		width: 100%;
		padding: 0;
	}

	.hero-button{
		margin: 0 auto;
	}

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

	.hero-consult{
		padding: 90px 0 10vw;
	}

	.hero-consult__row{
		margin-bottom: 20vw;
	}

	.hero-visual{
		margin-bottom: 8vw;
	}

	.hero-visual__mark{
		width: calc(100% + 30px);
		height: 15vw;
		margin: 0 -15px;
		padding: 1.5vw 0 0 3vw;
		font-size: 4vw;
	}

	.hero-visual__title{
		font-size: 7vw;
		margin: 0 -3vw 5vw 0;
	}

	.hero-visual__title span{
		font-size: 13vw;
	}

	.hero-visual__title--catch{
		font-size: 2.6vw;
		top: 1vw;
	}

	.hero-visual__title--catch:before{
		height: 3.5vw;
		left: 2.5vw;
		top: 0.2vw;
	}

	.hero-visual__title--catch:after{
		height: 3.5vw;
		right: 2.5vw;
		top: 0.2vw;
	}

	.hero-visual__checklist{
		font-size: 4.8vw;
	}

	.hero-visual__checklist li{
		padding-left: 8vw;
	}

	.hero-visual__checklist li:before{
		width: 6vw;
		height: 6vw;
		left: 0;
		top: 2.8vw;
	}

	.hero-button{
		max-width: none;
	}

	.hero-button a{
		font-size: 5.5vw;
		border-radius: 10vw;
		padding: 6vw 0 3vw;
	}

	.hero-button a .arrow{
		width: 5vw;
		margin-left: 2vw;
		top: -0.3vw;
	}

	.hero-button a .balloon{
		width: 50vw;
		height: 16vw;
		font-size: 4vw;
		padding-top: 2vw;
		top: -8vw;
		left: 20vw;
	}

	.hero-button a .balloon:before{
		height: 5vw;
		left: 7vw;
		top: 3vw;
	}

	.hero-button a .balloon:after{
		height: 5vw;
		right: 7vw;
		top: 3vw;
	}
	
}

