:root {
	--ky-main: #6F8F72;
	--ky-accent: #F47A32;
	--ky-sub: #EAF6FB;
	--ky-bg: #F7F5EF;
	--ky-text: #2F3A32;
	--ky-muted: #6F756B;
	--ky-green-soft: #E9EFE5;
	--ky-sand: #D8A45D;
	--ky-white: #FFFFFF;
	--ky-radius: 8px;
	--ky-inner: min(1120px, calc(100vw - 80px));
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--ky-bg);
	color: var(--ky-text);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
}

body.ky-menu-open {
	overflow: hidden;
}

.wp-site-blocks {
	padding: 0;
}

.wp-site-blocks > * + * {
	margin-block-start: 0;
}

.ky-header,
.ky-footer,
.ky-home,
.ky-page {
	font-family: var(--wp--preset--font-family--manrope), "Noto Sans JP", sans-serif;
	color: var(--ky-text);
}

.ky-container {
	width: var(--ky-inner);
	margin: 0 auto;
}

.ky-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(247, 245, 239, 0.92);
	border-bottom: 1px solid rgba(47, 58, 50, 0.1);
	backdrop-filter: blur(18px);
}

.ky-header__inner {
	width: var(--ky-inner);
	min-height: 84px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.ky-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ky-text);
	text-decoration: none;
}

.ky-logo__mark {
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.ky-logo__text {
	display: grid;
	gap: 2px;
	line-height: 1;
}

.ky-logo__name {
	font-size: 20px;
	letter-spacing: 0.08em;
}

.ky-logo__sub {
	color: var(--ky-muted);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ky-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.1vw, 30px);
	padding: 0;
	margin: 0;
	list-style: none;
}

.ky-nav__logo {
	display: none;
}

.ky-nav__link {
	position: relative;
	display: grid;
	gap: 7px;
	justify-items: center;
	color: var(--ky-text);
	font-size: 15px;
	line-height: 1.1;
	text-decoration: none;
}

.ky-nav__link::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 1px;
	background: var(--ky-accent);
	transform: translate(-50%, -50%);
	transition: width 0.25s ease;
}

.ky-nav__link:hover::after,
.ky-nav__link:focus-visible::after {
	width: 100%;
}

.ky-nav__en {
	color: var(--ky-muted);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ky-nav__jp {
	font-size: 15px;
}

.ky-menu-button {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(47, 58, 50, 0.18);
	border-radius: var(--ky-radius);
	background: var(--ky-white);
	color: var(--ky-text);
	cursor: pointer;
}

.ky-menu-button__line {
	display: block;
	width: 20px;
	height: 1px;
	margin: 5px auto;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.ky-header.is-open .ky-menu-button__line:nth-child(1) {
	transform: translateY(6px) rotate(35deg);
}

.ky-header.is-open .ky-menu-button__line:nth-child(2) {
	opacity: 0;
}

.ky-header.is-open .ky-menu-button__line:nth-child(3) {
	transform: translateY(-6px) rotate(-35deg);
}

.ky-home {
	overflow: hidden;
	background: linear-gradient(180deg, var(--ky-bg) 0%, #fbfaf6 100%);
}

.ky-section {
	padding: 104px 0;
}

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

.ky-section__head {
	display: grid;
	gap: 12px;
	margin-bottom: 44px;
}

.ky-section__label {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ky-main);
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ky-section__label::after {
	content: "";
	width: 54px;
	height: 1px;
	background: var(--ky-sand);
}

.ky-section__title {
	margin: 0;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.28;
	letter-spacing: 0;
}

.ky-section__lead,
.ky-text {
	margin: 0;
	color: var(--ky-muted);
	font-size: 15px;
	line-height: 2;
}

.ky-text + .ky-text {
	margin-top: 16px;
}

.ky-section__actions {
	margin-top: 30px;
}

.ky-hero {
	position: relative;
	overflow: hidden;
	min-height: calc(100vh - 84px);
	display: grid;
	align-items: center;
	padding: 0;
	background: var(--ky-text);
	color: var(--ky-white);
}

.ky-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	width: auto;
	max-width: none;
	height: auto;
	border-radius: var(--ky-radius);
	background: linear-gradient(90deg, rgba(26, 36, 29, 0.78) 0%, rgba(26, 36, 29, 0.52) 42%, rgba(26, 36, 29, 0.14) 100%);
	transform: none;
	pointer-events: none;
}

.ky-hero__inner {
	position: relative;
	z-index: 2;
	width: var(--ky-inner);
	margin: 0 auto;
	display: block;
}

.ky-hero__copy {
	position: relative;
	z-index: 2;
	max-width: 680px;
	padding: 92px 0;
}

.ky-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ky-hero__kicker::before {
	content: "";
	width: 34px;
	height: 1px;
	background: var(--ky-sand);
}

.ky-hero__title {
	margin: 0;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.28;
	letter-spacing: 0;
	color: var(--ky-white);
}

.ky-hero__text {
	max-width: 33em;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 2;
}

.ky-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid var(--ky-main);
	border-radius: var(--ky-radius);
	background: var(--ky-main);
	color: var(--ky-white);
	font-size: 17px;
	line-height: 1;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ky-button:hover,
.ky-button:focus-visible {
	background: var(--ky-accent);
	border-color: var(--ky-accent);
	color: var(--ky-white);
	transform: translateY(-2px);
}

.ky-button--ghost {
	background: transparent;
	color: var(--ky-main);
}

.ky-button--ghost:hover,
.ky-button--ghost:focus-visible {
	background: var(--ky-main);
	border-color: var(--ky-main);
}

.ky-hero .ky-button--ghost {
	border-color: rgba(255, 255, 255, 0.82);
	color: var(--ky-white);
}

.ky-hero .ky-button--ghost:hover,
.ky-hero .ky-button--ghost:focus-visible {
	background: var(--ky-white);
	border-color: var(--ky-white);
	color: var(--ky-text);
}

.ky-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.ky-slider__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
}

.ky-slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	pointer-events: none;
	transform: scale(1.08);
	transition: opacity 0.72s ease, transform 5.2s ease;
}

.ky-slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1.16);
}

.ky-slide__photo {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: 0;
	background: var(--ky-green-soft);
}

.ky-slide__photo img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.ky-slide__photo--small img {
	object-position: center;
}

.ky-slider__controls {
	position: absolute;
	right: max(40px, calc((100vw - 1120px) / 2));
	bottom: 42px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: var(--ky-radius);
	background: rgba(247, 245, 239, 0.86);
	backdrop-filter: blur(12px);
}

.ky-slider__arrow {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid rgba(47, 58, 50, 0.16);
	border-radius: var(--ky-radius);
	background: var(--ky-white);
	color: var(--ky-text);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}

.ky-slider__dots {
	display: flex;
	gap: 8px;
}

.ky-slider__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid var(--ky-main);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.ky-slider__dot.is-active {
	background: var(--ky-main);
}

.ky-split {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: stretch;
	gap: 56px;
}

.ky-visual-panel {
	min-height: 440px;
	border-radius: var(--ky-radius);
	background-color: var(--ky-green-soft);
	background-position: center;
	background-size: cover;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.ky-visual-panel--story {
	background-image: linear-gradient(90deg, rgba(47, 58, 50, 0.3), rgba(47, 58, 50, 0.04)), url("../images/001-アウトドアチェア/Frame 29.png");
}

.ky-visual-panel--life {
	background-image: linear-gradient(90deg, rgba(47, 58, 50, 0.32), rgba(47, 58, 50, 0.03)), url("../images/007-焚き火台/Frame 52.png");
}

.ky-copy-panel {
	align-self: center;
}

.ky-copy-panel .ky-section__head {
	margin-bottom: 26px;
}

.ky-product__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ky-product-card {
	position: relative;
	display: grid;
	gap: 18px;
	padding: 18px;
	border: 1px solid rgba(47, 58, 50, 0.1);
	border-radius: var(--ky-radius);
	background: rgba(255, 255, 255, 0.62);
	color: var(--ky-text);
	text-decoration: none;
}

.ky-product-card__image {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: var(--ky-radius);
	background: var(--ky-sub);
}

.ky-product-card__image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ky-product-card:hover .ky-product-card__image img {
	transform: scale(1.04);
}

.ky-product-card__category {
	color: var(--ky-accent);
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ky-product-card__title {
	margin: 0;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0;
}

.ky-product-card__text {
	margin: 0;
	color: var(--ky-muted);
	font-size: 15px;
	line-height: 1.8;
}

.ky-product__more {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

.ky-page-hero {
	position: relative;
	padding: 118px 0 92px;
	background-color: var(--ky-text);
	background-image: linear-gradient(90deg, rgba(35, 48, 39, 0.84), rgba(35, 48, 39, 0.38)), url("../images/001-アウトドアチェア/Frame 28.png");
	background-position: center;
	background-size: cover;
	color: var(--ky-white);
}

.ky-page-hero--product,
.ky-page-hero--product-detail {
	background-image: linear-gradient(90deg, rgba(35, 48, 39, 0.84), rgba(35, 48, 39, 0.38)), url("../images/005-アウトドアボックス/Frame 44.png");
}

.ky-page-hero--lifestyle {
	background-image: linear-gradient(90deg, rgba(35, 48, 39, 0.84), rgba(35, 48, 39, 0.38)), url("../images/007-焚き火台/Frame 52.png");
}

.ky-page-hero--company,
.ky-page-hero--contact {
	background-image: linear-gradient(90deg, rgba(35, 48, 39, 0.84), rgba(35, 48, 39, 0.38)), url("../images/002-折りたたみテーブル/Frame 32.png");
}

.ky-page-hero .ky-section__label {
	color: rgba(255, 255, 255, 0.78);
}

.ky-page-hero__title {
	max-width: 760px;
	margin: 18px 0 0;
	color: var(--ky-white);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.28;
	letter-spacing: 0;
}

.ky-page-lead {
	max-width: 48em;
	margin-bottom: 42px;
}

.ky-lower-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 56px;
}

.ky-lower-title,
.ky-detail__title {
	margin: 0 0 24px;
	font-size: 40px;
	font-weight: 400;
	line-height: 1.34;
	letter-spacing: 0;
}

.ky-story-content {
	max-width: 880px;
}

.ky-story-block + .ky-story-block {
	margin-top: 72px;
}

.ky-story-block .ky-lower-title {
	position: relative;
	padding-left: 28px;
}

.ky-story-block .ky-lower-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 14px;
	height: 14px;
	border: 3px solid var(--ky-main);
	border-radius: var(--ky-radius);
	background: var(--ky-sand);
	box-shadow: 9px 9px 0 var(--ky-green-soft);
}

.ky-story-visuals {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
	gap: 18px;
	margin: 56px 0 72px;
}

.ky-story-visuals figure {
	overflow: hidden;
	margin: 0;
	border-radius: var(--ky-radius);
	background: var(--ky-green-soft);
}

.ky-story-visuals img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.ky-story-visuals__main {
	min-height: 360px;
}

.ky-story-visuals__sub {
	min-height: 360px;
}

.ky-story-note {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 18px;
	margin: 56px 0 72px;
	padding: 24px;
	border-radius: var(--ky-radius);
	background: var(--ky-green-soft);
	color: var(--ky-text);
}

.ky-story-note__icon {
	position: relative;
	width: 42px;
	height: 42px;
	border-radius: var(--ky-radius);
	background: var(--ky-main);
}

.ky-story-note__icon::before,
.ky-story-note__icon::after {
	content: "";
	position: absolute;
	background: var(--ky-white);
}

.ky-story-note__icon::before {
	left: 13px;
	top: 10px;
	width: 16px;
	height: 22px;
	border-radius: 10px 10px 3px 3px;
}

.ky-story-note__icon::after {
	left: 19px;
	top: 6px;
	width: 4px;
	height: 31px;
	transform: rotate(42deg);
}

.ky-story-note p {
	margin: 0;
	font-size: 15px;
	line-height: 1.9;
}

.ky-product__grid--archive {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ky-product-card--link {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ky-product-card--link:hover,
.ky-product-card--link:focus-visible {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(47, 58, 50, 0.11);
}

.ky-product__grid--archive .ky-product-card__title {
	font-size: 20px;
}

.ky-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
	align-items: center;
	gap: 56px;
}

.ky-detail__media {
	display: grid;
	gap: 14px;
	overflow: visible;
	background: transparent;
}

.ky-detail__main-image {
	overflow: hidden;
	border-radius: var(--ky-radius);
	background: var(--ky-sub);
}

.ky-detail__main-image img {
	width: 100%;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.24s ease, transform 0.34s ease;
}

.ky-detail__main-image img.is-swapped {
	animation: ky-gallery-swap 0.34s ease;
}

.ky-detail__thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.ky-detail__thumb {
	overflow: hidden;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--ky-radius);
	background: var(--ky-sub);
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.ky-detail__thumb:hover,
.ky-detail__thumb:focus-visible {
	transform: translateY(-2px);
}

.ky-detail__thumb.is-active {
	border-color: var(--ky-accent);
}

.ky-detail__thumb img {
	width: 100%;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

@keyframes ky-gallery-swap {
	0% {
		opacity: 0.72;
		transform: scale(1.018);
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.ky-detail__spec {
	display: grid;
	gap: 1px;
	margin: 32px 0;
	overflow: hidden;
	border-radius: var(--ky-radius);
	background: rgba(47, 58, 50, 0.12);
}

.ky-detail__spec div {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 16px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.7);
}

.ky-detail__spec span {
	color: var(--ky-muted);
	font-size: 13px;
}

.ky-detail__spec strong {
	font-size: 15px;
	font-weight: 400;
}

.ky-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.ky-company-table {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border-radius: var(--ky-radius);
	background: rgba(47, 58, 50, 0.14);
}

.ky-company-table div {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 24px;
	padding: 26px 30px;
	background: rgba(255, 255, 255, 0.68);
}

.ky-company-table span {
	color: var(--ky-muted);
	font-size: 15px;
}

.ky-company-table p {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
}

.ky-contact-form,
.cf7-contact {
	max-width: 720px;
	margin: 40px auto 0;
	display: grid;
	gap: 22px;
	text-align: left;
}

.ky-contact-form label,
.cf7-contact__field label {
	display: grid;
	gap: 10px;
	color: var(--ky-text);
	font-size: 15px;
}

.ky-contact-form input,
.ky-contact-form textarea,
.cf7-contact__input,
.cf7-contact__select,
.cf7-contact__textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(47, 58, 50, 0.18);
	border-radius: var(--ky-radius);
	background: var(--ky-white);
	color: var(--ky-text);
	font: inherit;
	padding: 15px 16px;
}

.cf7-contact__field {
	margin: 0;
}

.cf7-contact__field .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
}

.cf7-contact__textarea {
	min-height: 180px;
	resize: vertical;
}

.cf7-contact__select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--ky-main) 50%),
		linear-gradient(135deg, var(--ky-main) 50%, transparent 50%);
	background-position:
		calc(100% - 22px) 50%,
		calc(100% - 16px) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 42px;
}

.cf7-contact__input:focus,
.cf7-contact__select:focus,
.cf7-contact__textarea:focus {
	outline: 2px solid var(--ky-main);
	outline-offset: 2px;
	border-color: var(--ky-main);
}

.cf7-contact__required {
	display: inline-block;
	margin-left: 8px;
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--ky-accent);
	color: var(--ky-white);
	font-size: 12px;
	line-height: 1;
}

.cf7-contact__privacy {
	color: var(--ky-muted);
	font-size: 15px;
	line-height: 1.8;
}

.cf7-contact__privacy .wpcf7-list-item {
	margin: 0;
}

.cf7-contact__privacy label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.cf7-contact__privacy input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0.3em 0 0;
	accent-color: var(--ky-main);
	flex: 0 0 auto;
}

.cf7-contact__submit {
	text-align: center;
}

.cf7-contact__submit .wpcf7-spinner {
	display: block;
	margin: 14px auto 0;
}

.cf7-contact__button {
	min-width: 220px;
	min-height: 52px;
	border: 1px solid var(--ky-main);
	border-radius: var(--ky-radius);
	background: var(--ky-main);
	color: var(--ky-white);
	font-size: 17px;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.cf7-contact__button:hover {
	background: var(--ky-accent);
	border-color: var(--ky-accent);
	transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
	margin-top: 8px;
	color: var(--ky-accent);
	font-size: 13px;
}

.wpcf7 form .wpcf7-response-output {
	margin: 28px 0 0;
	padding: 16px 18px;
	border-radius: var(--ky-radius);
	font-size: 15px;
	line-height: 1.7;
}

.ky-band {
	position: relative;
	overflow: hidden;
	padding: 76px;
	border-radius: var(--ky-radius);
	background: var(--ky-text);
	color: var(--ky-white);
}

.ky-band::after {
	content: "";
	position: absolute;
	right: -68px;
	bottom: 34px;
	width: 280px;
	height: 82px;
	border-radius: var(--ky-radius);
	background: rgba(216, 164, 93, 0.24);
	transform: rotate(-18deg);
}

.ky-band__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 34px;
}

.ky-band .ky-section__label,
.ky-band .ky-text {
	color: rgba(255, 255, 255, 0.74);
}

.ky-band .ky-section__title {
	color: var(--ky-white);
}

.ky-company__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 34px;
	overflow: hidden;
	border-radius: var(--ky-radius);
	background: rgba(47, 58, 50, 0.12);
}

.ky-company__item {
	display: grid;
	gap: 8px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.72);
}

.ky-company__term {
	color: var(--ky-muted);
	font-size: 13px;
	line-height: 1;
}

.ky-company__desc {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.ky-contact {
	text-align: center;
}

.ky-contact .ky-section__head {
	align-items: center;
}

.ky-contact .ky-section__label {
	justify-content: center;
}

.ky-contact .ky-section__lead {
	max-width: 42em;
	margin: 0 auto;
}

.ky-contact__actions {
	margin-top: 34px;
}

.ky-footer {
	background: #223027;
	color: rgba(255, 255, 255, 0.76);
}

.ky-footer__inner {
	width: var(--ky-inner);
	margin: 0 auto;
	padding: 54px 0 28px;
}

.ky-footer__main {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 36px;
	padding-bottom: 36px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ky-footer .ky-logo {
	color: var(--ky-white);
}

.ky-footer .ky-logo__sub {
	color: rgba(255, 255, 255, 0.62);
}

.ky-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ky-footer__nav a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	text-decoration: none;
}

.ky-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	font-size: 13px;
}

@media (min-width: 768px) and (max-width: 1024px) {
	:root {
		--ky-inner: calc(100vw - 64px);
	}

	.ky-header__inner {
		min-height: 78px;
	}

	.ky-nav__link {
		font-size: 15px;
	}

	.ky-hero__inner,
	.ky-split,
	.ky-lower-split,
	.ky-detail {
		grid-template-columns: 1fr;
	}

	.ky-hero__title {
		font-size: 40px;
	}

	.ky-section__title {
		font-size: 34px;
	}

	.ky-page-hero__title,
	.ky-lower-title,
	.ky-detail__title {
		font-size: 34px;
	}

	.ky-product-card__title {
		font-size: 26px;
	}

	.ky-slider__viewport {
		min-height: 100%;
	}

	.ky-product__grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ky-band {
		padding: 56px;
	}

	.ky-button {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	:root {
		--ky-inner: calc(100vw - 32px);
	}

	.ky-header.is-open {
		z-index: 1000;
		background: var(--ky-bg);
		backdrop-filter: none;
	}

	.ky-header__inner {
		min-height: 70px;
	}

	.ky-logo__mark {
		width: 44px;
		height: 44px;
	}

	.ky-logo__name {
		font-size: 18px;
	}

	.ky-menu-button {
		display: inline-block;
		position: relative;
		z-index: 1002;
	}

	.ky-nav {
		position: fixed;
		inset: 0;
		z-index: 1001;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 34px;
		padding: 96px 28px 40px;
		background:
			linear-gradient(180deg, rgba(233, 239, 229, 0.64), transparent 42%),
			var(--ky-bg);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	}

	.ky-header.is-open .ky-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.ky-nav__logo {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		color: var(--ky-text);
		text-decoration: none;
	}

	.ky-nav__logo-mark {
		width: 58px;
		height: 58px;
		object-fit: contain;
	}

	.ky-nav__logo-text {
		display: grid;
		gap: 3px;
		line-height: 1;
	}

	.ky-nav__list {
		width: min(360px, 100%);
		display: grid;
		gap: 0;
	}

	.ky-nav__item {
		border-bottom: 1px solid rgba(47, 58, 50, 0.12);
	}

	.ky-nav__link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 22px;
		padding: 21px 0;
		font-size: 14px;
	}

	.ky-nav__link::after {
		top: auto;
		bottom: 12px;
	}

	.ky-nav__en {
		font-size: 12px;
	}

	.ky-nav__jp {
		font-size: 14px;
	}

	.ky-section {
		padding: 72px 0;
	}

	.ky-section__head {
		margin-bottom: 30px;
	}

	.ky-section__label {
		font-size: 12px;
	}

	.ky-section__title {
		font-size: 28px;
	}

	.ky-hero {
		min-height: calc(100svh - 70px);
		padding: 0;
	}

	.ky-hero__inner {
		display: block;
	}

	.ky-split,
	.ky-lower-split,
	.ky-detail {
		grid-template-columns: 1fr;
	}

	.ky-hero__copy {
		padding: 74px 0 118px;
	}

	.ky-hero__title {
		font-size: 32px;
	}

	.ky-slider__viewport {
		min-height: 100%;
	}

	.ky-slide {
		display: block;
	}

	.ky-slider__controls {
		right: 16px;
		bottom: 20px;
		gap: 8px;
		padding: 10px;
	}

	.ky-slider__arrow {
		width: 34px;
		height: 34px;
	}

	.ky-visual-panel {
		min-height: 300px;
	}

	.ky-product__grid,
	.ky-company__list {
		grid-template-columns: 1fr;
	}

	.ky-product__grid--archive {
		grid-template-columns: 1fr;
	}

	.ky-page-hero {
		padding: 86px 0 70px;
	}

	.ky-page-hero__title,
	.ky-lower-title,
	.ky-detail__title {
		font-size: 28px;
	}

	.ky-story-block + .ky-story-block,
	.ky-story-visuals,
	.ky-story-note {
		margin-top: 48px;
		margin-bottom: 56px;
	}

	.ky-story-visuals {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.ky-story-visuals__main,
	.ky-story-visuals__sub {
		min-height: 240px;
	}

	.ky-story-note {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.ky-detail__spec div,
	.ky-company-table div {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.ky-product-card__title {
		font-size: 22px;
	}

	.ky-band {
		padding: 38px 24px;
	}

	.ky-band__content {
		grid-template-columns: 1fr;
	}

	.ky-footer__main,
	.ky-footer__bottom {
		display: grid;
	}

	.ky-footer__nav {
		justify-content: flex-start;
	}

	.ky-footer__bottom {
		font-size: 12px;
	}
}

@media (max-width: 374px) {
	.ky-hero__title {
		font-size: 30px;
	}

	.ky-slider__viewport {
		min-height: 100%;
	}

	.ky-button {
		width: 100%;
		padding: 0 18px;
	}

	.cf7-contact__button {
		width: 100%;
		font-size: 16px;
	}
}

@media (min-width: 1025px) {
	.ky-hero {
		min-height: calc(100vh - 84px);
	}
}

@media (min-width: 1440px) {
	:root {
		--ky-inner: 1120px;
	}

	.ky-hero__inner {
		width: min(1240px, calc(100vw - 80px));
	}
}
