/*
Theme Name: Cocoon Child Front Page
Description: 広島を楽しむnote トップページ専用スタイル
*/


/* =========================================================
   Top page layout reset
========================================================= */

body.home #content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
}

body.home #content-in {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.home #main {
	float: none;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

body.home #sidebar {
	display: none;
}


/* =========================================================
   Variables / base
========================================================= */

body.home .fp-root {
	--fp-width: 1180px;
	--fp-side: 28px;

	--fp-red: #b7242a;
	--fp-red-dark: #8f151b;
	--fp-red-soft: #f6e7e6;

	--fp-navy: #182532;
	--fp-navy-light: #263847;

	--fp-cream: #f7f3ec;
	--fp-cream-dark: #ece5da;
	--fp-white: #ffffff;

	--fp-text: #263039;
	--fp-text-soft: #66717b;
	--fp-border: #dedbd5;

	--fp-radius-lg: 30px;
	--fp-radius-md: 20px;
	--fp-radius-sm: 12px;

	--fp-shadow:
		0 18px 50px rgba(31, 38, 44, 0.08);

	--fp-transition:
		220ms cubic-bezier(0.2, 0.75, 0.25, 1);

	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	color: var(--fp-text);
	background: var(--fp-white);
	font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		"Yu Gothic",
		"YuGothic",
		"Meiryo",
		sans-serif;
	font-size: 16px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

body.home .fp-root,
body.home .fp-root *,
body.home .fp-root *::before,
body.home .fp-root *::after {
	box-sizing: border-box;
}

body.home .fp-root h1,
body.home .fp-root h2,
body.home .fp-root h3,
body.home .fp-root p,
body.home .fp-root form {
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	border: 0;
	background: none;
}

body.home .fp-root h1,
body.home .fp-root h2,
body.home .fp-root h3 {
	color: inherit;
	font-weight: 700;
	line-height: 1.35;
}

body.home .fp-root a {
	color: inherit;
	text-decoration: none;
}

body.home .fp-root img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0;
	border: 0;
}

body.home .fp-root input,
body.home .fp-root button {
	font: inherit;
}

body.home .fp-root button {
	cursor: pointer;
}

body.home .fp-root .fp-inner {
	width: min(
		calc(100% - (var(--fp-side) * 2)),
		var(--fp-width)
	);
	margin-right: auto;
	margin-left: auto;
}

body.home .fp-root .fp-screen-reader {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.home .fp-root .fp-section-kicker {
	margin-bottom: 13px;
	color: var(--fp-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.4;
}

body.home .fp-root .fp-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px;
	margin-bottom: 46px;
}

body.home .fp-root .fp-section-title {
	font-size: clamp(31px, 3.3vw, 48px);
	letter-spacing: -0.035em;
}

body.home .fp-root .fp-section-description {
	max-width: 390px;
	color: var(--fp-text-soft);
	font-size: 15px;
	line-height: 1.9;
}


/* =========================================================
   Hero
========================================================= */

body.home .fp-root .fp-hero {
	position: relative;
	min-height: 700px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--fp-navy);
}

body.home .fp-root .fp-hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

body.home .fp-root .fp-hero-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			rgba(18, 29, 39, 0.94) 0%,
			rgba(18, 29, 39, 0.82) 35%,
			rgba(18, 29, 39, 0.48) 68%,
			rgba(18, 29, 39, 0.22) 100%
		);
}

body.home .fp-root .fp-hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.7fr);
	align-items: end;
	gap: 90px;
	padding-top: 95px;
	padding-bottom: 95px;
}

body.home .fp-root .fp-hero-copy {
	max-width: 680px;
}

body.home .fp-root .fp-hero-eyebrow {
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.24em;
}

body.home .fp-root .fp-hero-title {
	color: var(--fp-white);
	font-size: clamp(52px, 6vw, 84px);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -0.055em;
}

body.home .fp-root .fp-hero-description {
	max-width: 650px;
	margin-top: 28px;
	color: rgba(255, 255, 255, 0.87);
	font-size: clamp(16px, 1.5vw, 18px);
	font-weight: 500;
	line-height: 2;
}

body.home .fp-root .fp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 36px;
}

body.home .fp-root .fp-primary-button,
body.home .fp-root .fp-secondary-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 14px 24px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	transition:
		transform var(--fp-transition),
		background-color var(--fp-transition),
		border-color var(--fp-transition);
}

body.home .fp-root .fp-primary-button {
	gap: 28px;
	min-width: 210px;
	color: var(--fp-white);
	background: var(--fp-red);
}

body.home .fp-root .fp-secondary-button {
	min-width: 150px;
	color: var(--fp-white);
	border: 1px solid rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(6px);
}

body.home .fp-root .fp-primary-button:hover,
body.home .fp-root .fp-secondary-button:hover {
	transform: translateY(-2px);
}

body.home .fp-root .fp-primary-button:hover {
	background: var(--fp-red-dark);
}

body.home .fp-root .fp-secondary-button:hover {
	background: rgba(255, 255, 255, 0.14);
}

body.home .fp-root .fp-button-arrow {
	font-size: 19px;
	font-weight: 400;
}

body.home .fp-root .fp-hero-search {
	padding: 29px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--fp-radius-md);
	background: rgba(255, 255, 255, 0.11);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

body.home .fp-root .fp-search-label {
	margin-bottom: 12px;
	color: var(--fp-white);
	font-size: 13px;
	font-weight: 700;
}

body.home .fp-root .fp-search-form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0;
	overflow: hidden;
	border-radius: 11px;
	background: var(--fp-white);
}

body.home .fp-root .fp-search-input {
	width: 100%;
	min-width: 0;
	height: 58px;
	padding: 0 18px;
	color: var(--fp-text);
	border: 0;
	border-radius: 0;
	outline: none;
	background: var(--fp-white);
	font-size: 14px;
	box-shadow: none;
}

body.home .fp-root .fp-search-input::placeholder {
	color: #92999e;
}

body.home .fp-root .fp-search-button {
	min-width: 74px;
	height: 58px;
	padding: 0 17px;
	color: var(--fp-white);
	border: 0;
	background: var(--fp-red);
	font-size: 13px;
	font-weight: 700;
	transition: background-color var(--fp-transition);
}

body.home .fp-root .fp-search-button:hover {
	background: var(--fp-red-dark);
}

body.home .fp-root .fp-search-suggestions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-top: 15px;
}

body.home .fp-root .fp-search-suggestion-title {
	margin-right: 4px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
}

body.home .fp-root .fp-search-tag {
	display: inline-flex;
	align-items: center;
	min-height: 29px;
	padding: 4px 10px;
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.08);
	font-size: 11px;
	transition: background-color var(--fp-transition);
}

body.home .fp-root .fp-search-tag:hover {
	background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   Intro
========================================================= */

body.home .fp-root .fp-intro {
	padding: 110px 0;
	background: var(--fp-white);
}

body.home .fp-root .fp-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 110px;
	align-items: start;
}

body.home .fp-root .fp-intro-title {
	font-size: clamp(36px, 4vw, 56px);
	letter-spacing: -0.045em;
	line-height: 1.38;
}

body.home .fp-root .fp-intro-text {
	padding-top: 30px;
}

body.home .fp-root .fp-intro-text p {
	color: var(--fp-text-soft);
	font-size: 16px;
	line-height: 2.15;
}

body.home .fp-root .fp-intro-text p + p {
	margin-top: 17px;
}

body.home .fp-root .fp-intro-points {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 78px;
	background: var(--fp-border);
	border-top: 1px solid var(--fp-border);
	border-bottom: 1px solid var(--fp-border);
}

body.home .fp-root .fp-intro-point {
	padding: 34px 34px 32px;
	background: var(--fp-white);
}

body.home .fp-root .fp-intro-point-number {
	display: block;
	margin-bottom: 30px;
	color: var(--fp-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

body.home .fp-root .fp-intro-point-title {
	margin-bottom: 12px;
	font-size: 18px;
}

body.home .fp-root .fp-intro-point-text {
	color: var(--fp-text-soft);
	font-size: 14px;
	line-height: 1.9;
}


/* =========================================================
   Categories
========================================================= */

body.home .fp-root .fp-categories {
	padding: 105px 0 115px;
	background: var(--fp-cream);
}

body.home .fp-root .fp-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

body.home .fp-root .fp-category-item {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border-radius: var(--fp-radius-md);
	background: var(--fp-white);
	box-shadow: 0 7px 24px rgba(30, 38, 45, 0.055);
	transition:
		transform var(--fp-transition),
		box-shadow var(--fp-transition);
}

body.home .fp-root .fp-category-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--fp-shadow);
}

body.home .fp-root .fp-category-item-wide {
	grid-column: span 2;
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
}

body.home .fp-root .fp-category-image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #ddd7cf;
}

body.home .fp-root .fp-category-item-wide .fp-category-image-wrap {
	height: 100%;
	aspect-ratio: auto;
	min-height: 340px;
}

body.home .fp-root .fp-category-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}

body.home .fp-root .fp-category-item:hover .fp-category-image {
	transform: scale(1.045);
}

body.home .fp-root .fp-category-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 27px 28px 28px;
}

body.home .fp-root .fp-category-item-wide .fp-category-body {
	justify-content: center;
	padding: 45px;
}

body.home .fp-root .fp-category-number {
	display: block;
	margin-bottom: 25px;
	color: var(--fp-red);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.13em;
}

body.home .fp-root .fp-category-title {
	font-size: clamp(18px, 1.8vw, 23px);
	letter-spacing: -0.02em;
}

body.home .fp-root .fp-category-description {
	margin-top: 14px;
	color: var(--fp-text-soft);
	font-size: 13px;
	line-height: 1.9;
}

body.home .fp-root .fp-category-link {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	margin-top: auto;
	padding-top: 25px;
	color: var(--fp-navy);
	font-size: 12px;
	font-weight: 700;
}

body.home .fp-root .fp-category-arrow {
	color: var(--fp-red);
	font-size: 17px;
	font-weight: 400;
}


/* =========================================================
   Guide
========================================================= */

body.home .fp-root .fp-guide {
	padding: 115px 0;
	background: var(--fp-navy);
	color: var(--fp-white);
}

body.home .fp-root .fp-guide-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
	gap: 90px;
	align-items: center;
}

body.home .fp-root .fp-guide-visual {
	position: relative;
}

body.home .fp-root .fp-guide-image {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--fp-radius-lg);
}

body.home .fp-root .fp-guide-badge {
	position: absolute;
	right: -28px;
	bottom: 42px;
	display: flex;
	flex-direction: column;
	min-width: 165px;
	padding: 20px 23px;
	border-radius: 14px;
	background: var(--fp-red);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

body.home .fp-root .fp-guide-badge-small {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.2em;
}

body.home .fp-root .fp-guide-badge-large {
	margin-top: 3px;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

body.home .fp-root .fp-guide-copy .fp-section-kicker {
	color: #e3686c;
}

body.home .fp-root .fp-guide-title {
	color: var(--fp-white);
	font-size: clamp(39px, 4.7vw, 61px);
	letter-spacing: -0.045em;
}

body.home .fp-root .fp-guide-list {
	margin-top: 43px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

body.home .fp-root .fp-guide-link {
	display: grid;
	grid-template-columns: 35px minmax(0, 1fr) auto;
	align-items: center;
	gap: 17px;
	padding: 21px 3px;
	color: var(--fp-white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	transition: padding-left var(--fp-transition);
}

body.home .fp-root .fp-guide-link:hover {
	padding-left: 7px;
}

body.home .fp-root .fp-guide-link-number {
	color: #e56b70;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

body.home .fp-root .fp-guide-link-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

body.home .fp-root .fp-guide-link-text strong {
	color: var(--fp-white);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

body.home .fp-root .fp-guide-link-text small {
	color: rgba(255, 255, 255, 0.58);
	font-size: 11px;
	line-height: 1.5;
}

body.home .fp-root .fp-guide-link-arrow {
	font-size: 20px;
	font-weight: 300;
}


/* =========================================================
   Articles
========================================================= */

body.home .fp-root .fp-articles {
	padding: 110px 0 115px;
	background: var(--fp-white);
}

body.home .fp-root .fp-articles-popular {
	background: var(--fp-cream);
}

body.home .fp-root .fp-post-feed {
	width: 100%;
	min-width: 0;
}

body.home .fp-root .fp-post-feed img {
	max-width: 100%;
	height: auto;
}

body.home .fp-root .fp-post-feed a {
	transition:
		opacity var(--fp-transition),
		transform var(--fp-transition);
}

body.home .fp-root .fp-post-feed a:hover {
	opacity: 0.88;
}


/* =========================================================
   Editorial policy
========================================================= */

body.home .fp-root .fp-philosophy {
	padding: 115px 0;
	background: var(--fp-white);
}

body.home .fp-root .fp-philosophy-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
	gap: 90px;
	align-items: center;
}

body.home .fp-root .fp-philosophy-title {
	font-size: clamp(40px, 4.6vw, 60px);
	letter-spacing: -0.045em;
}

body.home .fp-root .fp-philosophy-lead {
	max-width: 630px;
	margin-top: 27px;
	color: var(--fp-text-soft);
	font-size: 16px;
	line-height: 2.05;
}

body.home .fp-root .fp-policy-grid {
	display: grid;
	gap: 0;
	margin-top: 44px;
	border-top: 1px solid var(--fp-border);
}

body.home .fp-root .fp-policy-item {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--fp-border);
}

body.home .fp-root .fp-policy-marker {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	color: var(--fp-red);
	border: 1px solid #d9b0b2;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 800;
}

body.home .fp-root .fp-policy-title {
	font-size: 16px;
}

body.home .fp-root .fp-policy-text {
	margin-top: 6px;
	color: var(--fp-text-soft);
	font-size: 13px;
	line-height: 1.85;
}

body.home .fp-root .fp-philosophy-image-area {
	position: relative;
	padding: 0 0 34px 34px;
}

body.home .fp-root .fp-philosophy-image-area::before {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	width: 55%;
	height: 48%;
	content: "";
	border-radius: var(--fp-radius-md);
	background: var(--fp-red-soft);
}

body.home .fp-root .fp-philosophy-image {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--fp-radius-lg);
}


/* =========================================================
   Operator
========================================================= */

body.home .fp-root .fp-operator {
	padding: 105px 0;
	background: var(--fp-cream);
}

body.home .fp-root .fp-operator-box {
	display: grid;
	grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
	overflow: hidden;
	border-radius: var(--fp-radius-lg);
	background: var(--fp-white);
	box-shadow: var(--fp-shadow);
}

body.home .fp-root .fp-operator-logo-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 390px;
	padding: 55px;
	background: #f1eee7;
}

body.home .fp-root .fp-operator-label {
	margin-bottom: 20px;
	color: #8b8b86;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
}

body.home .fp-root .fp-operator-logo {
	width: min(100%, 280px);
	max-height: 170px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

body.home .fp-root .fp-operator-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 70px;
}

body.home .fp-root .fp-operator-title {
	font-size: clamp(30px, 3.4vw, 43px);
	letter-spacing: -0.035em;
}

body.home .fp-root .fp-operator-text {
	max-width: 650px;
	margin-top: 17px;
	color: var(--fp-text-soft);
	font-size: 14px;
	line-height: 2;
}

body.home .fp-root .fp-text-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 25px;
	margin-top: 29px;
	padding-bottom: 4px;
	color: var(--fp-navy);
	border-bottom: 1px solid var(--fp-navy);
	font-size: 13px;
	font-weight: 700;
	transition:
		color var(--fp-transition),
		border-color var(--fp-transition);
}

body.home .fp-root .fp-text-link:hover {
	color: var(--fp-red);
	border-color: var(--fp-red);
}

body.home .fp-root .fp-text-link-arrow {
	font-size: 17px;
}


/* =========================================================
   Final CTA
========================================================= */

body.home .fp-root .fp-last {
	padding: 0;
	background: var(--fp-cream);
}

body.home .fp-root .fp-last .fp-inner {
	width: 100%;
	max-width: none;
}

body.home .fp-root .fp-last-box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
	gap: 80px;
	align-items: center;
	padding:
		90px
		max(
			var(--fp-side),
			calc((100vw - var(--fp-width)) / 2)
		);
	color: var(--fp-white);
	background: var(--fp-red);
}

body.home .fp-root .fp-last-eyebrow {
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
}

body.home .fp-root .fp-last-title {
	color: var(--fp-white);
	font-size: clamp(38px, 4.5vw, 57px);
	letter-spacing: -0.045em;
}

body.home .fp-root .fp-last-text {
	max-width: 610px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.95;
}

body.home .fp-root .fp-last-actions {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

body.home .fp-root .fp-last-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 65px;
	padding: 15px 22px;
	color: var(--fp-navy);
	border-radius: 10px;
	background: var(--fp-white);
	font-size: 13px;
	font-weight: 700;
	transition: transform var(--fp-transition);
}

body.home .fp-root .fp-last-button:hover {
	transform: translateY(-2px);
}

body.home .fp-root .fp-last-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 10px;
}

body.home .fp-root .fp-last-search-input {
	min-width: 0;
	height: 62px;
	padding: 0 18px;
	color: var(--fp-white);
	border: 0;
	border-radius: 0;
	outline: none;
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
	font-size: 13px;
}

body.home .fp-root .fp-last-search-input::placeholder {
	color: rgba(255, 255, 255, 0.65);
}

body.home .fp-root .fp-last-search-button {
	min-width: 73px;
	height: 62px;
	padding: 0 17px;
	color: var(--fp-white);
	border: 0;
	background: rgba(0, 0, 0, 0.16);
	font-size: 12px;
	font-weight: 700;
	transition: background-color var(--fp-transition);
}

body.home .fp-root .fp-last-search-button:hover {
	background: rgba(0, 0, 0, 0.25);
}


/* =========================================================
   Tablet
========================================================= */

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

	body.home .fp-root {
		--fp-side: 24px;
	}

	body.home .fp-root .fp-hero {
		min-height: 650px;
	}

	body.home .fp-root .fp-hero-inner {
		grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
		gap: 45px;
		padding-top: 75px;
		padding-bottom: 75px;
	}

	body.home .fp-root .fp-hero-title {
		font-size: clamp(50px, 7vw, 72px);
	}

	body.home .fp-root .fp-intro {
		padding: 90px 0;
	}

	body.home .fp-root .fp-intro-grid {
		gap: 60px;
	}

	body.home .fp-root .fp-categories,
	body.home .fp-root .fp-guide,
	body.home .fp-root .fp-articles,
	body.home .fp-root .fp-philosophy {
		padding-top: 90px;
		padding-bottom: 90px;
	}

	body.home .fp-root .fp-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.home .fp-root .fp-category-item-wide {
		grid-column: span 2;
	}

	body.home .fp-root .fp-guide-layout {
		gap: 60px;
	}

	body.home .fp-root .fp-guide-badge {
		right: -15px;
	}

	body.home .fp-root .fp-philosophy-layout {
		gap: 60px;
	}

	body.home .fp-root .fp-operator {
		padding: 85px 0;
	}

	body.home .fp-root .fp-operator-copy {
		padding: 50px;
	}

	body.home .fp-root .fp-last-box {
		gap: 50px;
		padding-top: 75px;
		padding-bottom: 75px;
	}

}


/* =========================================================
   Small tablet
========================================================= */

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

	body.home .fp-root .fp-hero {
		min-height: auto;
	}

	body.home .fp-root .fp-hero-shade {
		background:
			linear-gradient(
				180deg,
				rgba(18, 29, 39, 0.76) 0%,
				rgba(18, 29, 39, 0.9) 70%,
				rgba(18, 29, 39, 0.96) 100%
			);
	}

	body.home .fp-root .fp-hero-inner {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 45px;
		padding-top: 90px;
		padding-bottom: 65px;
	}

	body.home .fp-root .fp-hero-copy {
		max-width: 650px;
	}

	body.home .fp-root .fp-hero-search {
		width: min(100%, 560px);
	}

	body.home .fp-root .fp-intro-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	body.home .fp-root .fp-intro-text {
		padding-top: 0;
	}

	body.home .fp-root .fp-intro-points {
		grid-template-columns: 1fr;
	}

	body.home .fp-root .fp-intro-point {
		display: grid;
		grid-template-columns: 45px minmax(0, 1fr);
		column-gap: 14px;
	}

	body.home .fp-root .fp-intro-point-number {
		grid-row: 1 / 3;
		margin-bottom: 0;
		padding-top: 4px;
	}

	body.home .fp-root .fp-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	body.home .fp-root .fp-section-description {
		max-width: 560px;
	}

	body.home .fp-root .fp-guide-layout {
		grid-template-columns: 1fr;
		gap: 65px;
	}

	body.home .fp-root .fp-guide-visual {
		width: min(100%, 560px);
	}

	body.home .fp-root .fp-guide-image {
		aspect-ratio: 16 / 11;
	}

	body.home .fp-root .fp-philosophy-layout {
		grid-template-columns: 1fr;
	}

	body.home .fp-root .fp-philosophy-image-area {
		width: min(100%, 600px);
		margin-top: 10px;
	}

	body.home .fp-root .fp-philosophy-image {
		aspect-ratio: 16 / 11;
	}

	body.home .fp-root .fp-operator-box {
		grid-template-columns: 1fr;
	}

	body.home .fp-root .fp-operator-logo-area {
		min-height: 280px;
	}

	body.home .fp-root .fp-operator-copy {
		padding: 50px;
	}

	body.home .fp-root .fp-last-box {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	body.home .fp-root .fp-last-actions {
		max-width: 540px;
	}

}


/* =========================================================
   Smartphone
========================================================= */

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

	body.home .fp-root {
		--fp-side: 18px;
		--fp-radius-lg: 22px;
		--fp-radius-md: 16px;
	}

	body.home .fp-root .fp-pc-break {
		display: none;
	}

	body.home .fp-root .fp-section-kicker {
		margin-bottom: 9px;
		font-size: 10px;
	}

	body.home .fp-root .fp-section-title {
		font-size: 31px;
	}

	body.home .fp-root .fp-section-heading {
		margin-bottom: 31px;
	}

	body.home .fp-root .fp-section-description {
		font-size: 13px;
		line-height: 1.8;
	}

	body.home .fp-root .fp-hero-inner {
		gap: 35px;
		padding-top: 70px;
		padding-bottom: 45px;
	}

	body.home .fp-root .fp-hero-title {
		font-size: clamp(47px, 14vw, 61px);
		line-height: 1.13;
	}

	body.home .fp-root .fp-hero-description {
		margin-top: 22px;
		font-size: 14px;
		line-height: 1.9;
	}

	body.home .fp-root .fp-hero-actions {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 29px;
	}

	body.home .fp-root .fp-primary-button,
	body.home .fp-root .fp-secondary-button {
		width: 100%;
		min-height: 55px;
	}

	body.home .fp-root .fp-primary-button {
		justify-content: space-between;
		padding-right: 20px;
		padding-left: 20px;
	}

	body.home .fp-root .fp-hero-search {
		padding: 19px;
		border-radius: 15px;
	}

	body.home .fp-root .fp-search-form {
		grid-template-columns: minmax(0, 1fr) 64px;
	}

	body.home .fp-root .fp-search-input,
	body.home .fp-root .fp-search-button {
		height: 53px;
	}

	body.home .fp-root .fp-search-input {
		padding: 0 13px;
		font-size: 12px;
	}

	body.home .fp-root .fp-search-button {
		min-width: 64px;
		padding: 0 10px;
	}

	body.home .fp-root .fp-search-suggestions {
		gap: 6px;
	}

	body.home .fp-root .fp-intro {
		padding: 70px 0;
	}

	body.home .fp-root .fp-intro-title {
		font-size: 34px;
	}

	body.home .fp-root .fp-intro-text p {
		font-size: 14px;
		line-height: 2;
	}

	body.home .fp-root .fp-intro-points {
		margin-top: 52px;
	}

	body.home .fp-root .fp-intro-point {
		padding: 25px 5px;
	}

	body.home .fp-root .fp-intro-point-title {
		font-size: 16px;
	}

	body.home .fp-root .fp-intro-point-text {
		font-size: 13px;
	}

	body.home .fp-root .fp-categories,
	body.home .fp-root .fp-guide,
	body.home .fp-root .fp-articles,
	body.home .fp-root .fp-philosophy {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	body.home .fp-root .fp-category-grid {
		grid-template-columns: 1fr;
		gap: 17px;
	}

	body.home .fp-root .fp-category-item-wide {
		grid-column: auto;
		display: flex;
	}

	body.home .fp-root .fp-category-item-wide .fp-category-image-wrap {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	body.home .fp-root .fp-category-body,
	body.home .fp-root .fp-category-item-wide .fp-category-body {
		padding: 23px 22px 24px;
	}

	body.home .fp-root .fp-category-number {
		margin-bottom: 17px;
	}

	body.home .fp-root .fp-category-title {
		font-size: 19px;
	}

	body.home .fp-root .fp-category-description {
		font-size: 13px;
	}

	body.home .fp-root .fp-category-link {
		margin-top: 2px;
		padding-top: 19px;
	}

	body.home .fp-root .fp-guide-layout {
		gap: 50px;
	}

	body.home .fp-root .fp-guide-image {
		aspect-ratio: 1 / 1;
	}

	body.home .fp-root .fp-guide-badge {
		right: 12px;
		bottom: 12px;
		min-width: 130px;
		padding: 14px 17px;
	}

	body.home .fp-root .fp-guide-badge-large {
		font-size: 15px;
	}

	body.home .fp-root .fp-guide-title {
		font-size: 36px;
	}

	body.home .fp-root .fp-guide-list {
		margin-top: 34px;
	}

	body.home .fp-root .fp-guide-link {
		grid-template-columns: 27px minmax(0, 1fr) auto;
		gap: 10px;
		padding: 18px 0;
	}

	body.home .fp-root .fp-guide-link-text strong {
		font-size: 13px;
	}

	body.home .fp-root .fp-guide-link-text small {
		font-size: 10px;
	}

	body.home .fp-root .fp-philosophy-title {
		font-size: 36px;
	}

	body.home .fp-root .fp-philosophy-lead {
		font-size: 14px;
		line-height: 1.95;
	}

	body.home .fp-root .fp-policy-item {
		grid-template-columns: 36px minmax(0, 1fr);
		gap: 12px;
	}

	body.home .fp-root .fp-philosophy-image-area {
		padding: 0 0 20px 20px;
	}

	body.home .fp-root .fp-philosophy-image {
		aspect-ratio: 1 / 1.08;
	}

	body.home .fp-root .fp-operator {
		padding: 65px 0;
	}

	body.home .fp-root .fp-operator-logo-area {
		min-height: 220px;
		padding: 35px 25px;
	}

	body.home .fp-root .fp-operator-logo {
		width: min(100%, 220px);
		max-height: 125px;
	}

	body.home .fp-root .fp-operator-copy {
		padding: 35px 25px 38px;
	}

	body.home .fp-root .fp-operator-title {
		font-size: 29px;
	}

	body.home .fp-root .fp-operator-text {
		font-size: 13px;
		line-height: 1.9;
	}

	body.home .fp-root .fp-last-box {
		gap: 34px;
		padding-top: 62px;
		padding-bottom: 62px;
		padding-right: 18px;
		padding-left: 18px;
	}

	body.home .fp-root .fp-last-title {
		font-size: 36px;
	}

	body.home .fp-root .fp-last-text {
		font-size: 13px;
	}

	body.home .fp-root .fp-last-search {
		grid-template-columns: minmax(0, 1fr) 63px;
	}

	body.home .fp-root .fp-last-search-input,
	body.home .fp-root .fp-last-search-button {
		height: 57px;
	}

	body.home .fp-root .fp-last-search-button {
		min-width: 63px;
		padding: 0 9px;
	}

}


/* =========================================================
   Very small smartphone
========================================================= */

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

	body.home .fp-root {
		--fp-side: 16px;
	}

	body.home .fp-root .fp-hero-title {
		font-size: 44px;
	}

	body.home .fp-root .fp-search-suggestion-title {
		width: 100%;
	}

	body.home .fp-root .fp-intro-title,
	body.home .fp-root .fp-guide-title,
	body.home .fp-root .fp-philosophy-title,
	body.home .fp-root .fp-last-title {
		font-size: 32px;
	}

	body.home .fp-root .fp-category-body,
	body.home .fp-root .fp-category-item-wide .fp-category-body {
		padding-right: 19px;
		padding-left: 19px;
	}

}


/* =========================================================
   Accessibility
========================================================= */

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

	body.home .fp-root *,
	body.home .fp-root *::before,
	body.home .fp-root *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

}