@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}
html {
	font-size: 62.5%;
}
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
	box-sizing: border-box;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
a, a:link {
	text-decoration: none;
}
a:hover {
	opacity: 0.7;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
.content {
	max-width: 980px;
	width: 95%;
	margin: 0 auto;
}
#container {
	position: relative;
	text-align: left;
}
#main {
	display: block;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	.content {
		width: 90%;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

/*------------------------------------------------------------
	共通
------------------------------------------------------------*/
.br-tb {
	display: none;
}
.br-sp {
	display: none;
}
@media screen and (max-width:896px) {
	.br-tb {
		display: block;
	}
	.tb-off {
		display: none;
	}
}
@media screen and (max-width:430px) {
	.br-sp {
		display: block;
	}
	.sp-off {
		display: none;
	}
}

/*------------------------------------------------------------
	shiba-cocochi LP
------------------------------------------------------------*/
/* ========= 基本変数 ========= */
:root {
	--beige: #e8dcc4;
	--brown: #8b6f4e;
	--green: #4a7c3f;
	--text: #484848;
	--main-w: 390px;
	/* セクション背景色(仮) */
	--sec-hero: #ffffff;
	--sec-lead: #ffffff;
	--sec-about: #ffffff;
	--sec-worry: #e9f9ff;
	--sec-solve: #fff8e9;
	--sec-scene: #ffffff;
	--sec-color: #f5fbf4;
	--sec-easy: #ffffff;
	--sec-cut: #ffffff;
	--sec-pro: #f5fbf4;
	--sec-safe: #ffffff;
	/* ハンバーガーメニュー */
	--black: #484848;
	--white: #fff;
	--nav-bg: #FFF8E9;
	--nav-text: #484848;
	--nav-sub: #484848;
	--btn-size: 48px;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-in: cubic-bezier(0.64, 0, 0.78, 0);
	--dur-open: 0.52s;
	--dur-close: 0.38s;
}
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Zen Maru Gothic", sans-serif !important;
	color: var(--text) !important;
	background: var(--beige) !important;
	line-height: 1.7 !important;
	font-size: 13px !important;
	min-height: 100vh !important;
	font-weight: 500 !important;
}
img {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
}
/* ========= レイアウト ========= */
.main {
	width: 100%;
	max-width: var(--main-w);
	margin: 0 auto;
	background: #fff;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.side {
	display: none;
}
@media screen and (max-width:430px) {
	.main {
		max-width: 100%;
	}
}

/* ========= セクション共通 ========= */
section {
	position: relative;
	padding: 60px 28px 100px;
	text-align: center;
}
section:has(svg) {
	padding: 60px 28px 150px;
}
/* section:last-of-type {
	padding-bottom: 60px;
} */
h2 {
	font-size: 20px !important;
	font-weight: 500;
	letter-spacing: 18%;
	line-height: 1.7;
	margin-bottom: 16px !important;
}
.lead {
	font-size: 13px !important;
	line-height: 1.7;
	color: #484848;
	letter-spacing: 13%;
	font-weight: 500 !important;
}
.note {
	font-size: 11px !important;
	color: #888;
	margin-top: 12px !important;
}
/* 波 */
.wave-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	height: 100px;
	display: block;
	pointer-events: none;
	z-index: 2;
}
.sec-hero  { background: var(--sec-hero); }
.sec-lead  { background: var(--sec-lead); }
.sec-about { background: var(--sec-about); }
.sec-worry { background: var(--sec-worry); }
.sec-solve { background: var(--sec-solve); }
.sec-scene { background: var(--sec-scene); }
.sec-color { background: var(--sec-color); }
.sec-easy  { background: var(--sec-easy); }
.sec-cut   { background: var(--sec-cut); }
.sec-pro   { background: var(--sec-pro); }
.sec-safe  { background: var(--sec-safe); }

/* ========= 1. Hero ========= */
#hero {
	padding-bottom: 0;
}
.hero-copy {
	font-size: 30px !important;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin: 30px 0 24px !important;
	transition: 3s !important;
}
.hero-logo {
	width: 145px;
	margin: 0 auto 30px;
	transition: 3s !important;
}
.hero-img {
	margin: 0 -28px;
	transition: 3s !important;
}

/* ========= 2. リード ========= */
#lead {
	padding-bottom: 70px;
}
#lead .lead {
	text-align: left;
}
#lead .lead02 {
	margin-left: auto;
	width: fit-content;
}
.lead_img {
	max-width: 300px;
	margin: 70px 0;
	position: relative;
}
.lead_img01 {
	margin-left: auto;
	margin-right: -28px;
}
.lead_img02 {
	margin-left: -28px;
}

/* ---- オーナメント スイング ---- */
@keyframes anim-swing {
	0%, 100% { transform: translate(var(--tx), var(--ty)) rotate(-6deg); }
	50%       { transform: translate(var(--tx), var(--ty)) rotate( 6deg); }
}

.dog_icon {
	position: absolute;
	max-width: 84px;
	transform-origin: center;
	z-index: 5;
	animation: anim-swing 2.0s ease-in-out infinite;
}
.dog_icon_01 {
	bottom: 0;
	left: 0;
	--tx: -50%;
	--ty: 50%;
	animation-delay: 0s;
}
.dog_icon_02 {
	bottom: 0;
	right: 0;
	--tx: 50%;
	--ty: 50%;
	animation-delay: -0.6s;
}
.dog_icon_03 {
	top: 0;
	right: 0;
	--tx: -50%;
	--ty: -85%;
	animation-delay: -1.2s;
}
.dog_icon_04 {
	top: 0;
	left: 0;
	--tx: 50%;
	--ty: -85%;
	animation-delay: -1.8s;
}
.dog_icon_05 {
	top: 0;
	right: 0;
	--tx: -50%;
	--ty: -85%;
	animation-delay: -0.4s;
}


/* ---- アイコン スイング（スクロール連動・1回のみ） ---- */
@keyframes anim-swing-once {
	0%   { transform: rotate(  0deg); }
	20%  { transform: rotate(-12deg); }
	45%  { transform: rotate( 10deg); }
	65%  { transform: rotate( -7deg); }
	82%  { transform: rotate(  5deg); }
	100% { transform: rotate(  0deg); }
}
.swing-once {
	transform-origin: center;
	display: block;
}
.swing-once.is-swinging {
	animation: anim-swing-once 2s ease-in-out forwards;
}

/* ========= 3. shiba-cocochi とは ========= */

#about .lead {
	margin: 30px 0 50px !important;
	/* font-size: 11px !important; */
}
#about .about-img p {
	margin-top: 10px !important;
	/* font-size: 11px !important; */
}

/* ========= 4. 暑い季節のお悩み解決 ========= */
#worry {
	position: relative;
	padding: 0 0 50px;
}
#worry > img {
	width: 100%;
}
#worry .worry_top {
	position: absolute;
	top: min(90px, 23vw);
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
/* #worry .worry_top p {
	font-size: 11px !important;
} */
#worry .worry_txt {
	position: absolute;
	left: 0;
	transform: translate(0, -50%);
	display: grid;
	grid-template-columns: auto auto;
	justify-content: center;
	gap: 40px;
	width: 100%;
	align-items: center;
	margin-right: 25px;
}
#worry .worry_txt img {
	max-width: clamp(55px, 15vw, 60px);
}
#worry .worry_txt p {
	font-size: 10px !important;
	text-align: left;
}
#worry .worry_txt01 {
	top: 46.5%;
}
#worry .worry_txt02 {
	top: 82.5%;
}

/* ========= 5. shiba-cocochi で解決 ========= */
#solve {
	position: relative;
	padding: 0 0 50px;
}
#solve h2, #solve p {
	position: absolute;
	left: 50%;
	width: 100%;
}
#solve h2 {
	top: min(90px, 23vw);
	transform: translate(-50%, -50%);
}
#solve p {
	bottom: min(175px, 40vw);
	transform: translate(-50%, 50%);
	/* font-size: 11px !important; */
}

/* ========= 6. こんなシーンで使える ========= */
#scene {
	padding-top: 100px;
}
#scene h2 {
	margin-bottom: 25px !important;
}
#scene p {
	/* font-size: 11px !important; */
}
.scene_slider {
	overflow: hidden;
}
#scene .swiper-pagination {
	position: static;
	margin: 20px auto 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
#scene .swiper-pagination-bullet {
	background: #D9D9D9;
	opacity: 1;
	margin: 0;
}
#scene .swiper-pagination-bullet-active {
	background: #929292;
}
#scene .swiper-button-next, #scene .swiper-button-prev {
	width: 10px;
	height: 10px;
	transform: translate(0, -50%) rotate(45deg);
}
#scene .swiper-button-prev {
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
}
#scene .swiper-button-next {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
#scene .swiper-button-next:after, #scene .swiper-button-prev:after {
	content: none;
}

/* ========= 7. こだわりの色合い ========= */
#color {
	padding: 0 0 100px;
	position: relative;
}
#color h2, #color p {
	position: absolute;
	left: 50%;
	width: 100%;
}
#color h2 {
	top: min(90px, 20vw);
	transform: translate(-50%, -50%);
}
#color p {
	bottom: min(160px, 45vw);
	transform: translate(-50%, 50%);
	/* font-size: 11px !important; */
}

/* ========= 8. こだわりの色合い ========= */
#easy p {
	/* font-size: 11px !important; */
}
.easy_img {
	max-width: 300px;
	margin: 70px 0;
}
.easy_img01 {
	margin-left: auto;
	margin-right: -28px;
}
.easy_img02 {
	margin-left: -28px;
	margin-bottom: 0;
}


/* ========= 9. 簡単カット、簡単お手入れ 
========= */
#cut {
	padding: 60px 0 200px;
	position: relative;
}
#cut p {
	position: absolute;
	left: 50%;
	width: 100%;
	/* font-size: 11px !important; */
}
#cut p.lead01 {
	top: 34%;
	transform: translate(-50%, -50%);
}
#cut p.lead02 {
	top: 60.8%;
	transform: translate(-50%, -50%);
}
#cut p.lead03 {
	top: 88.5%;
	transform: translate(-50%, -50%);
}

/* ========= 10. プロの技術を日常に ========= */
#pro {
	padding: 0 0 100px;
	position: relative;
}
#pro h2, #pro p {
	position: absolute;
	left: 50%;
	width: 100%;
}
#pro h2 {
	top: min(90px, 23vw);
	transform: translate(-50%, -50%);
}
#pro p {
	bottom: min(200px, 55vw);
	transform: translate(-50%, 50%);
	/* font-size: 11px !important; */
}

/* ========= 11. 安心・安全な機能性 ========= */
#safe p {
	/* font-size: 11px !important; */
}
#safe .safe_img {
	margin: 50px 0 30px;
}

/* ========= フッター ========= */
#footer {
	padding: 20px 20px 80px;
	text-align: center;
	font-size: 10px !important;
}
#footer .footer_logo {
	display: grid;
	grid-template-columns: auto auto;
	gap: 20px;
	width: fit-content;
	align-items: center;
	justify-content: center;
	margin: 0 auto 40px;
}
#footer .footer_logo a:first-child {
	max-width: 108px;
}
#footer .footer_logo a:last-child {
	max-width: 52px;
}
#footer p {
	font-family: "Hina Mincho", serif;
	letter-spacing: 15%;
}
#footer .sp_cta_btn {
	display: none;
}


@media screen and (max-width: 896px) {
	#footer {
		padding: 20px 20px 180px;
	}
	#footer .sp_cta_btn {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		background-color: #568D47;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.6s ease;
	}
	#footer .sp_cta_btn.is-visible {
		opacity: 1;
		pointer-events: auto;
	}
	#footer .sp_cta_btn a {
		color: #fff;
		text-align: center;
		padding: 30px 0;
		display: block;
	}
	#footer .sp_cta_btn .inner {
		display: grid;
		grid-template-columns: auto auto;
		align-items: center;
		gap: 10px;
		width: fit-content;
		margin: 0 auto;
	}
	#footer .sp_cta_btn a p {
		font-size: 11px !important;
	}
	#footer .sp_cta_btn a span {
		font-size: 17px !important;
		border: 1px solid #fff;
		border-radius: 50vh;
		width: 97px;
		height: 43px;
		align-content: center;
	}
}

/* ========= アニメーション ========= */
.fadeIn {
	opacity: 0;
	visibility: hidden;
	transition: 2s;
}
.fadeInup {
	opacity: 0;
	visibility: hidden;
	transform: translate(0, 30px);
	transition: 1s;
}
.fadeInright {
	opacity: 0;
	visibility: hidden;
	transform: translate(30px, 0);
	transition: 1s;
}
.fadeInleft {
	opacity: 0;
	visibility: hidden;
	transform: translate(-30px, 0);
	transition: 1s;
}
.fadeIn.active, .fadeInup.active, .fadeInleft.active, .fadeInright.active {
	opacity: 1;
	visibility: visible;
	transform: translate(0, 0);
}

/* ========= PC (左右固定パネル) ========= */
@media (min-width: 897px) {
	#header {
		display: none;
	}
	.side-left,
	.side-right {
		display: block;
		position: fixed;
		top: 0;
		bottom: 0;
		width: calc((100vw - var(--main-w)) / 2);
		background: var(--beige);
		z-index: 10;
		overflow: hidden;
	}
	.side-left {
		left: 0;
		padding: 0;
	}
	.side-left .side_inner {
		display: grid;
		gap: 50px;
		height: 100%;
		width: 95%;
		margin: auto;
		justify-items: center;
		padding: 5% 0;
	}
	.side-right {
		right: 0;
	}
	/* ぼかし装飾 */
	.side-left::before,
	.side-right::before {
		content: '';
		position: absolute;
		width: 500px;
		height: 500px;
		border-radius: 50%;
		background: rgba(90, 140, 80, 0.22);
		filter: blur(90px);
	}
	.side-left::before {
		top: 30%;
		left: -150px;
	}
	.side-right::before {
		top: -100px;
		right: -100px;
	}
	/* ナビ */
	.nav {
		position: relative;
		z-index: 2;
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 100%;
		max-width: 314px;
	}
	.nav a {
		display: block;
		padding: 10px 16px;
		background: #A68355;
		color: #fff;
		text-align: center;
		font-size: 13px !important;
		letter-spacing: 0.05em;
		border-radius: 0 50vh 50vh 0;
	}
	.nav a:hover {
		opacity: 0.8;
	}
	/* 左下ブランド */
	.side-brand {
		display: flex;
		align-items: center;
		gap: 20px;
		max-width: 314px;
	}
	.side-brand .jt {
		font-size: 11px !important;
		color: var(--brown);
		font-weight: 700;
		padding: 4px 8px;
		line-height: 1.2;
		max-width: 140px;
	}
	.side-brand .ig {
		width: 67px;
		height: 67px;
	}
	/* 右下CTA */
	.cta-floating {
		position: absolute;
		bottom: 40px;
		left: 50%;
		transform: translate(-50%);
		width: 170px;
		height: 170px;
		z-index: 2;
	}
	.main {
		box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
	}
}

/*------------------------------------------------------------
	ハンバーガーメニュー
------------------------------------------------------------*/

/* ─── Header ─── */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 300;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
}
.site-logo {
	font-size: 13px !important;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--black);
	text-decoration: none;
	text-transform: uppercase;
}
/* ─── Hamburger Button ─── */
.menu-btn {
	width: 36px;
	height: 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	position: relative;
	z-index: 400;
	position: fixed;
	right: 20px;
	top: 10px;
}
.menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background: #96B383;
	transition:
		transform 0.35s var(--ease-out),
		opacity 0.2s ease,
		width 0.3s var(--ease-out),
		background 0.2s ease;
	transform-origin: center;
}
/* open → × */
.menu-btn.is-open span {
	background: #568D47;
}
.menu-btn.is-open span:first-child {
	transform: translateY(6.5px) rotate(12deg);
}
.menu-btn.is-open span:last-child {
	transform: translateY(-0.5px) rotate(-12deg);
}
/* ─── Nav Panel ─── */
.nav-panel {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	background: var(--nav-bg);
	clip-path: inset(0 0 100% 0);
	transition: clip-path var(--dur-close) var(--ease-in);
	padding-top: 76px;
	padding-bottom: 48px;
	height: 100vh;
	max-height: 100vh;
	overflow-y: auto;
}
.nav-panel.is-open {
	clip-path: inset(0 0 0% 0);
	transition: clip-path var(--dur-open) var(--ease-out);
}
/* ─── Close button inside panel ─── */
.nav-close {
	position: absolute;
	top: 14px;
	right: 20px;
	width: var(--btn-size);
	height: var(--btn-size);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}
.nav-close::before,
.nav-close::after {
	content: '';
	position: absolute;
	width: 22px;
	height: 1.5px;
	background: var(--black);
}
.nav-close::before {
	transform: rotate(45deg);
}
.nav-close::after {
	transform: rotate(-45deg);
}
/* ─── Nav Logo ─── */
.nav-logo {
	margin-left:28px;
	max-width: 115px;
	margin-bottom: 50px;
	opacity: 0;
	transform: translateY(-15px);
	transition:
		transform var(--dur-close) var(--ease-in),
		opacity 0.15s ease;
}
.nav-panel.is-open .nav-logo {
	opacity: 1;
	transform: translateY(0);
	transition:
		transform var(--dur-open) var(--ease-out),
		opacity 0.3s ease;
	transition-delay: 0.02s;
}
.nav-panel:not(.is-open) .nav-logo {
	transition-delay: 0s;
}
/* ─── Nav List ─── */
.nav-list {
	list-style: none;
	padding: 0 28px;
}
.nav-list li {
	overflow: hidden;
	margin-bottom: 10px;
}
.nav-list a {
	display: block;
	padding: 5px 0;
	text-decoration: none;
	transform: translateY(-100%);
	opacity: 0;
	transition:
	transform var(--dur-close) var(--ease-in),
	opacity 0.15s ease;
}
.nav-panel.is-open .nav-list a {
	transform: translateY(0);
	opacity: 1;
	transition:
	transform var(--dur-open) var(--ease-out),
	opacity 0.3s ease;
}
/* stagger */
.nav-panel.is-open .nav-list li:nth-child(1) a {
	transition-delay: 0.06s;
}
.nav-panel.is-open .nav-list li:nth-child(2) a {
	transition-delay: 0.10s;
}
.nav-panel.is-open .nav-list li:nth-child(3) a {
	transition-delay: 0.14s;
}
.nav-panel.is-open .nav-list li:nth-child(4) a {
	transition-delay: 0.18s;
}
.nav-panel.is-open .nav-list li:nth-child(5) a {
	transition-delay: 0.22s;
}
.nav-panel.is-open .nav-list li:nth-child(6) a {
	transition-delay: 0.26s;
}
.nav-panel.is-open .nav-list li:nth-child(7) a {
	transition-delay: 0.30s;
}
.nav-panel.is-open .nav-list li:nth-child(8) a {
	transition-delay: 0.34s;
}
.nav-panel.is-open .nav-list li:nth-child(9) a {
	transition-delay: 0.38s;
}
.nav-panel:not(.is-open) .nav-list a {
	transition-delay: 0s !important;
}
.nav-label-ja {
	display: block;
	color: var(--nav-text);
	letter-spacing: 0.12em;
	margin-top: 3px;
	font-size: 14px !important;
	border-bottom: 1px solid #484848;
	width: fit-content;
}
.nav-list a:hover .nav-label-en {
	opacity: 0.5;
}