@charset "UTF-8";

/*==================================================
	共通設定：カラー変数
==================================================*/
:root {
	--white: #fff;
	--black: #0f1011;
	--gray-dark: #333333;
	--line-green: #06C755;
	--grad-start: #667eea;
	--grad-end: #e6653e;
	--accent: #ff4f35;
	--dull-yellow: #D4AF37;
	--brown: #8B4513;
	--brown-dark: #2C2416;
	--primary: #00C1C8;
	--secondary: #ff5b56;

	/*** ナロー幅 ***/
	--narrow-width: 480px;
	--narrow-padding: 20px;
}


/*==================================================
	リセット
==================================================*/
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	font-size: 10px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--black);
	background: var(--grad-end);
	overflow-x: hidden;
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
ul, ol {
	list-style: none;
}
input,
textarea,
button,
select {
	font: inherit;
}
button {
	cursor: pointer;
	border: none;
}
main {
	display: block;
	overflow: hidden;
}
header {
	background: transparent !important;
	box-shadow: none !important;
	top: unset !important;
}


/*==================================================
	共通
==================================================*/
body {
	width: 100%;
	height: 100%;
	font-size: 1.6rem;
	line-height: 1.6;
	position: relative;
}
/***** テキスト関連 *****/
.text-center {
	text-align: center;
}
.mb-small {
	margin-bottom: 16px;
}
.mb-medium {
	margin-bottom: 32px;
}
.mb-large {
	margin-bottom: 48px;
}
/***** 端末ごとに表示／非表示 *****/
.sp-only,
.mobile-only {
	display: block;
}
.pc-only,
.desktop-only {
	display: none;
}

@media (min-width: 768px) {
	.sp-only,
  .mobile-only {
    display: none !important;
  }
	.pc-only,
  .desktop-only {
    display: block !important;
  }
}


/*==================================================
	PC左右余白エリア
==================================================*/
.lp-side {
	position: fixed;
	top: 0;
	height: 100vh;
	z-index: 100;
	display: none;					/***** 1024px以下は非表示 *****/
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s;
}
.lp-side--right.is-visible,
.lp-side--left.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
/***** 左側 *****/
.lp-side--left .pc-header {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
/***** 左側：ロゴ *****/
.lp-side--left .header-logo {
	height: auto;
	width: 100%;
	max-width: 300px;
}
/***** 右側：ナビゲーション *****/
.lp-side--right .pc-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.lp-side--right .side-nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.side-nav-link {
	font-family: 'Teko', sans-serif;
	font-size: 3rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white);
	position: relative;
	padding: 4px 0;
	transition: color 0.3s;
}
.side-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease, left 0.3s ease;
}
.side-nav-link:hover,
.side-nav-link.is-active {
	color: var(--white);
}
.side-nav-link.is-active::after {
	width: 100%;
	left: 0;
}

@media (min-width: 1280px) {
	.lp-side {
		width: calc((100vw - var(--narrow-width)) / 2);
		background: none;
	}
	.lp-side {
		display: flex;
		justify-content: center;
		flex: 1 1 0;
	}
	.lp-side--left,
	.lp-side--right {
		align-items: center;
	}
	.lp-side--left {
		left: 0;
	}
	.lp-side--right {
		right: 0;
	}
	.lp-side--left .pc-header {
		width: 100%;
	}
}

/***** 右側：ボタン *****/
.side-buttons {
	color: var(--white);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 250px;
}
.side-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 2rem;
	font-weight: 700;
	padding: 10px 18px;
	border-radius: 50px;
	color: var(--white);
	transition: transform 0.25s, box-shadow 0.25s;
	white-space: nowrap;
	width: 100%;
	border: 2px solid #fff;
}
.side-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.side-btn .material-symbols-rounded {
	font-size: 18px;
}
.side-btn--contact {
	background: var(--accent);
}
.side-btn--line {
	background: var(--line-green);
}
.icon-line {
	flex-shrink: 0;
}
/***** 右側：電話ボタン *****/
.side-btn-tel {
	display: block;
	width: 90%;
	transition: transform 0.25s;
		margin-top: 10px;
}
.side-btn-tel img {
	width: 100%;
	height: auto;
}
.side-btn-tel:hover {
	transform: translateY(-2px);
}
.side-btn-tel .phone-img {
	width: 100%;
	height: auto;
}


/*==================================================
	背景画像（固定追従）
==================================================*/
.narrow-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100svh;
	object-fit: cover;
	z-index: -1;
	pointer-events: none;
}
.narrow-bg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100svh;
	background: #0f1011;
	z-index: -1;
	pointer-events: none;
	opacity: 0.95;
	transition: opacity 0.4s ease;
}


/*==================================================
	真ん中のコンテンツエリア(ナローコンテンツ)
==================================================*/
.narrow-body {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	margin-top: 3%;
}
.narrow-container {
	width: 100%;
	max-width: var(--narrow-width);
	background: url(../img/wooden-garage/bg.webp) no-repeat center center;
	background-size: 500px auto;
	background-attachment: fixed;
	box-shadow: 0 0 60px rgba(0,0,0,0.1);
	overflow: clip;
	overflow-clip-margin: 120px;
}
.narrow-container::after {
	content: '';
	display: block;
	height: 0;
}

@media screen and (max-width: 480px) {
	.narrow-body {
		margin-top: 0;
	}
}


/*==================================================
	固定メニューバー(フッター付近)
==================================================*/
.fixed-bottom-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	z-index: 900;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}
.fixed-bottom-bar.is-visible {
	transform: translateY(0);
}
.fixed-bottom-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 10px;
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--white);
	background: var(--accent);
	border: none;
	cursor: pointer;
	transition: opacity 0.2s;
}
.fixed-bottom-btn:hover {
	opacity: 0.85;
}
.fixed-bottom-btn .material-symbols-rounded {
	font-size: 20px;
}
.fixed-bottom-btn--line {
	background: var(--line-green);
}

@media screen and (min-width: 1280px) {
	.fixed-bottom-bar {
		display: none;
	}
}


/*==================================================
	各セクション共通
==================================================*/
.narrow-container section,
.narrow-container .cta-mid {
	padding: 48px var(--narrow-padding);
}
.section-title {
	font-size: 23px;
	font-family: 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 900;
	text-align: center;
	margin-bottom: 18px;
	color: var(--brown-dark);
	letter-spacing: 0.04em;
	line-height: 1.5;
	text-shadow: 0 2px 8px rgba(244,228,184,0.08);
}
.section-title--light {
	color: #fff;
	text-shadow: 0 2px 12px rgba(44,36,22,0.18);
}
.section-title__sub {
	font-size: 0.7em;
	display: inline-block;
	margin-top: 8px;
}
.section-lead {
	text-align: center;
	color: #565656;
	margin-bottom: 32px;
	font-size: 14px;
	line-height: 1.7;
}
.section-lead--light {
	color: rgba(255, 255, 255, 0.9);
}


/*==================================================
	CTA
==================================================*/
.cta-button {
	display: inline-block;
	padding: 18px 36px;
	background: linear-gradient(90deg, var(--dull-yellow) 0%, #AF7A25 50%, var(--brown) 100%);
	background-size: 200% 100%;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	border-radius: 50px;
	box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25), 0 2px 8px rgba(44,36,22,0.08);
	transition: all 0.2s;
	text-align: center;
	cursor: pointer;
	letter-spacing: 0.04em;
	border: none;
}
.cta-button:hover {
	transform: translateY(-2px);
	background-position: 99% 0;
	box-shadow: 0 16px 48px rgba(212, 175, 55, 0.45), 0 4px 16px rgba(44,36,22,0.14);
}
.cta-button--large {
	padding: 24px 40px;
	font-size: 17px;
}
.cta-wrapper-section {
	width: 100%;
	color: var(--white);
}
.cta-wrapper {
	padding: 48px var(--narrow-padding);
	text-align: center;
	display: flex;
	justify-content: center;
}
.cta-wrapper.cta2 {
	padding-top: 0;
}
.cta-button-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}
/***** ボタン上の吹き出し *****/
.tooltip {
	width: 100%;
	display: flex;
	justify-content: center;
	font-size: 1.2rem;
	text-align: center;
	color: var(--white);
	position: relative;
}
.tooltip::before {
	margin-right: 26rem;
	position: absolute;
	content: "＼";
}
.tooltip::after {
	margin-left: 26rem;
	position: absolute;
	content: "／";
}


/*==================================================
	ファーストビュー
==================================================*/
.fv {
	position: relative;
	z-index: 1;
	width: 100%;
	min-height: 620px;
	overflow: hidden;
	background: var(--black);
}
.fv-bg {
	position: absolute;
	inset: 0;
	background: url(../img/wooden-garage/fv.webp) no-repeat center center / cover;
}
.fv-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(15, 16, 17, 0.6) 0%,
		rgba(15, 16, 17, 0.7) 75%,
		rgba(15, 16, 17, 0.8) 90%,
		rgba(15, 16, 17, 1) 100%
	);
}
.fv-content {
	position: relative;
	z-index: 2;
	color: var(--white);
	text-align: center;
	max-width: 800px;
	will-change: transform, opacity;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 40px;
}
.fv-logo-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}
.fv-logo-wrapper .fv-logo {
	width: 100%;
	max-width: 170px;
	height: auto;
}
.fv-text-box {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.fv-title {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.3;
}
.fv-title-main {
	display: block;
	font-size: 23px;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.fv-title-main > span {
	margin-inline: 8px;
}
.fv-title .small {
	font-size: 2.3rem;
}
.fv-title-question {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: var(--dull-yellow);
}
.fv-lead {
	font-size: 16px;
	line-height: 2;
	padding: 0;
}
.fv-lead strong {
	color: var(--dull-yellow);
	font-weight: 700;
}
.fv-sub {
	font-size: 13px;
	line-height: 2;
	opacity: 0.95;
}
.fv-sub strong {
	color: var(--dull-yellow);
	font-size: 1.4em;
	font-weight: 700;
}
.fv-content > .cta-button {
	width: 100%;
	max-width: 320px;
}
.fv-bottom-wrapper {
	width: 100%;
	position: relative;
}
.fv-bottom-wrapper::after {
	position: absolute;
	content: "";
	z-index: -1;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: url(../img/wooden-garage/worried_man.webp) no-repeat center center / contain;
	width: 200px;
	height: 240px;
	overflow: hidden;
}

.bottom-btn-wrapper {
	display: flex;
	justify-content: center;
	position: relative;
}
.bottom-btn-wrapper a {
	position: relative;
	top: -30px;
	z-index: 999;
}

@media (min-width: 1024px) {
	.fv-btn-wrapper::after {
		top: -60px;
		width: 150px;
		height: 200px;
	}
}


/*==================================================
	木造ガレージの提案
==================================================*/
.wooden-feature {
	padding: 15px var(--narrow-padding) 48px;
}
.wooden-feature > * {
	color: var(--white);
	text-shadow: none;
}
.wooden-feature-text {
	font-size: 1.6rem;
	line-height: 1.9;
	text-align: center;
	margin-bottom: 20px;
	width: 300px;
	margin-inline: auto;
}
.wooden-feature-text p:first-child {
	margin-bottom: 12px;
}
.wooden-feature-text p {
	text-align: left;
}
.wooden-feature-text p:last-child {
	text-align: center;
	font-size: 1.5em;
	margin-top: 5px;
}
.wooden-feature .emphasis {
	font-size: 1.3em;
	margin-inline: 4px;
	color: var(--primary);
	font-weight: bold;
}


/*==================================================
	ギャラリー（ばらばらレイアウト）
==================================================*/
.gallery {
	position: relative;
	padding: 60px var(--narrow-padding);
	min-height: min(520px, 135vw);
	transform: scale(1.2);
	z-index: 5;
	margin: 0 0 25px;
}
.gallery-item {
	position: absolute;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gallery-item--1 {
	width: 65%;
	top: 20px;
	left: 10px;
	rotate: -3deg;
	z-index: 1;
}
.gallery-item--2 {
	width: 55%;
	top: 180px;
	right: 10px;
	rotate: 2.5deg;
	z-index: 2;
}
.gallery-item--3 {
	width: 50%;
	top: 62%;
	left: 30px;
	rotate: -1.5deg;
	z-index: 3;
}
.sec-problems {
	color: var(--white);
}
.sec-problems-header {
	display: flex;
	justify-content: center;
}


/*==================================================
	問題提起
==================================================*/
.problems {
	padding: 60px var(--narrow-padding);
}
.problems .section-title {
	text-align: left;
	color: var(--white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.problems .section-lead {
	text-align: left;
	color: var(--white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.problems-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
.problems-item {
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.problems-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 12px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	gap: 8px;
}
.problems-title .icon {
	color: var(--dull-yellow);
	color: var(--secondary);
	font-size: 25px;
}
.problems-text {
	font-size: 14px;
	line-height: 1.8;
	color: var(--white);
}

.problems-imgbox {
	width: 100%;
	position: relative;
}
.problems-img {
	position: absolute;
	z-index: -1;
	bottom: 62px;
	right: -35px;
	width: 45%;
	height: auto;
	transform: rotate(8deg);
	border-radius: 6px;
	overflow: hidden;
}
.problems-img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (min-width: 1024px) {
	.problems-img {
		bottom: 52px;
		right: -35px;
	}
}


/*==================================================
	解決策
==================================================*/
.solution {
	color: var(--white);
}
.solution#solution {
	padding-bottom: 80px;
}
.solution .container {
	margin-top: 24px;
}
.solution-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 40px;
}
.solution-item {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 25px;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.solution-icon {
	width: 100%;
	height: auto;
	margin-inline: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.solution-icon img {
	width: auto;
	height: 65px;
}
.solution-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.6;
	color: var(--primary);
	text-align: center;
	display: flex;
	align-items: center;
	gap: 8px;
}
.solution-title .icon {
	color: var(--primary);
	font-size: 25px;
}
.solution-text {
	font-size: 14px;
	line-height: 1.8;
	color: var(--white);
}

/***** 吹き出し *****/
.speech {
	background: var(--primary);
	color: var(--white);
	padding: 30px 16px;
	display: flex;
	justify-content: space-between;
	font-size: 16px;
	position: relative;
	z-index: 1;
}
.speech::after {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 20px;
	height: 12px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: var(--primary);
}
.speech > .text {
	text-align: left;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.6;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.speech > .img-box .img {
	width: 105px;
	position: absolute;
	top: -18px;
	right: -15px;
	z-index: -1;
}
.speech > .img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*==================================================
	比較セクション
==================================================*/
.comparison {
	padding: 60px 0;
}
.comparison .section-title {
	color: var(--white);
}
.comparison .section-lead {
	color: var(--white);
}
.comparison-table-wrapper {
	overflow-x: auto;
	margin-top: 32px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	-webkit-overflow-scrolling: touch;
}
.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--white);
	min-width: 600px;
}
.comparison-table thead tr {
	background: linear-gradient(135deg, var(--brown-dark) 0%, rgb(78, 63.8181818182, 39) 100%);
}
.comparison-th {
	padding: 16px 12px;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.comparison-th--item {
	width: 20%;
	background: linear-gradient(135deg, #6B7280 0%, rgb(83.7787234043, 89.2595744681, 100.2212765957) 100%);
}
.comparison-th--iron {
	width: 40%;
	background: var(--secondary);
}
.comparison-th--wooden {
	width: 40%;
	background: var(--primary);
}
.comparison-td {
	padding: 16px 12px;
	font-size: 12px;
	line-height: 1.7;
	border: 1px solid #E5E7EB;
}
.comparison-td--item {
	font-weight: 700;
	text-align: center;
	background: #fefefe;
	color: var(--gray-dark);
	font-size: 13px;
}
.comparison-td--iron {
	color: #666666;
	background: #f7f7f7;
}
.comparison-td--wooden {
	background: #fefefe;
}
.comparison-td--wooden strong {
	color: var(--primary);
}
.comparison tbody tr {
	transition: all 0.2s ease;
}
.comparison tbody tr:hover {
	background: rgba(244, 228, 184, 0.2);
}

/***** スクロールヒント *****/
.scroll-hint-text {
	white-space: nowrap !important;
	padding: 0 30px !important;
	text-align: center !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}
.js-scrollable.is-right-scrollable::after,
.js-scrollable.is-left-scrollable::before {
	width: 70px !important;
}

@media (min-width: 1024px) {
	.comparison-table-wrapper {
		overflow-x: visible !important;
		width: calc(100% + 80px);
		margin-left: -40px;
		margin-right: -40px;
	}
	.comparison-table {
		background: transparent;
		border-collapse: separate;
		border-spacing: 0;
		min-width: 570px;
		width: 100%;
		margin-left: 50%;
		transform: translateX(-50%);
	}
	.comparison-table tr:first-child th:first-child	{
		border-top-left-radius: 10px;
	}
	.comparison-table tr:first-child th:last-child	{
		border-top-right-radius: 10px;
	}
	.comparison-table tr:last-child td:first-child	{
		border-bottom-left-radius: 10px;
	}
	.comparison-table tr:last-child td:last-child	{
		border-bottom-right-radius: 10px;
	}

	/***** スクロールヒント *****/
	.scroll-hint-text,
	.js-scrollable.is-right-scrollable::after,
	.js-scrollable.is-left-scrollable::before {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
	.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
	.scroll-hint-shadow-wrap.is-right-scrollable::after {
		opacity: 0 !important;
		visibility: hidden !important;
	}
	.scroll-hint-icon-wrap,
	.scroll-hint-icon {
		display: none !important;
	}
}


/*==================================================
	深掘り：鉄製・DIYの隠れたリスク
==================================================*/
.narrow-container .risks {
	padding: 65px var(--narrow-padding) 48px var(--narrow-padding);
	color: var(--white);
}
.risks .section-title {
	color: var(--white);
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	text-align: left;
}
.risks-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
.risks-item {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 25px;
	border-radius: 12px;
	transition: all 0.3s ease;
}
.risks-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.risks-title .icon {
	color: var(--secondary);
  font-size: 25px;
}
.risks-text {
	font-size: 14px;
	line-height: 1.9;
	color: var(--white);
}

.risks-title-bottom {
	width: 100%;
  position: relative;
}
.risks-title-bottom::after {
	position: absolute;
  content: "";
  z-index: -1;
  top: -110px;
  right: 9px;
  background: url(../img/wooden-garage/worried_man2.webp) no-repeat center center / contain;
  width: 110px;
  height: 110px;
  overflow: hidden;
}


/*==================================================
	ジョイガレージが選ばれる具体的理由
==================================================*/
.reasons {
	padding: 60px 0;
	color: var(--black);
}
.reasons .section-title {
	color: var(--white);
}
.reasons .section-title.speech {
	background: var(--primary);
	position: relative;
}
.reasons .section-title.speech::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 20px;
  height: 12px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: var(--primary);
}
.reasons-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	margin-top: 24px;
}
.reasons-item {
	transition: all 0.3s ease;
	overflow: hidden;
	display: flex;
	gap: 24px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 10px;

}
.reasons-title {
	font-size: 1.63rem;
	font-weight: 700;
	margin-bottom: 14px;
	line-height: 1.5;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: 12px;
}
.reasons-title.underline {
	text-decoration: underline 1px solid var(--primary);
}
.reasons-item-num {
	color: var(--primary);
	font-family: 'Teko', sans-serif;
	font-size: 48px;
	font-weight: 500;
	line-height: 0.9;
}
.reasons-text {
	font-size: 14px;
	line-height: 1.9;
	color: var(--white);
}


/*==================================================
	クロージング
==================================================*/
.closing {
	color: var(--white);
	background: linear-gradient(var(--grad-start), var(--grad-end));
	text-align: center;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	padding-bottom: 56px !important;
}
.closing-message-wrapper {
	display: flex;
	flex: 1;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.closing-message {
	font-weight: 700;
	line-height: 1.7;
	display: flex;
  justify-content: center;
	padding: 30px 0;
}
.closing-text {
	font-size: 1.5rem;
	line-height: 2;
	max-width: 360px;
  margin: 0 auto;
}
.img-wrapper-closing {
	width: 100%;
	display: flex;
	justify-content: center;
}
.img-wrapper-closing .img-box {
	width: 85%;
  max-width: 380px;
  flex-shrink: 0;
}

@media screen and (min-width: 1280px) {
	.closing {
		padding-bottom: 0 !important;
	}
}


/*==================================================
	セクション間の三角形
==================================================*/
.down-triangle-wrapper {
  color: var(--white);
	padding: 0 var(--narrow-padding);
}
.down-triangle-wrapper .inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.down-triangle-wrapper .text {
	color: var(--white);
	font-size: 1.6rem;
	text-align: center;
}
.down-triangle-wrapper .text.big {
	font-size: 1.3em;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 30px;
}
.underline {
	text-decoration: underline 1px solid var(--white);
	text-underline-offset: 8px;
	line-height: 1.8;
}
.down-triangle-wrapper .text.underline {
	line-height: 1.8;
}
.down-triangle {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}
.down-triangle::after {
	position: absolute;
	content: "";
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 30px;
	background: rgba(255, 255, 255, 0.2);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}


/*==================================================
	アニメーション
==================================================*/
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}