@charset "UTF-8";

:root {
	/* 基本色 */
	--color-white: #fff;
	--color-text-main: #003182;
	--color-text-dark: #233237;
	--color-bg-card: #D8DFE8;
	--color-bg-sub-image: #ddd;

	/* ブランド系 */
	--color-brand-purple: #7A7ACC;
	--color-brand-blue: #7AAACC;
	--color-brand-lime: #DAE6A1;

	/* 補助色 */

	/* 半透明 */
	--color-brand-purple-alpha: rgba(82, 82, 204, 0.149);
	--color-brand-blue-alpha: rgba(82, 153, 204, 0.149);
	--color-brand-lime-alpha: rgba(214, 230, 138, 0.149);
	--color-white-80: rgba(255, 255, 255, 0.8);
	--color-shadow-soft: rgba(0, 0, 0, 0.08);

	/* gradient */
	--grad-mv-bg: linear-gradient(135deg,
			var(--color-brand-purple-alpha) 10%,
			var(--color-brand-blue-alpha) 50%,
			var(--color-brand-lime-alpha) 90%);

	--grad-hero-title: linear-gradient(90deg,
			var(--color-brand-purple) 0%,
			var(--color-brand-blue) 50%,
			var(--color-brand-lime) 100%);

	--grad-hero-sub: linear-gradient(45deg,
			var(--color-brand-purple) 0%,
			var(--color-brand-blue) 100%);

	--grad-mail-btn: linear-gradient(90deg,
			var(--color-brand-purple) 0%,
			var(--color-brand-blue) 50%,
			var(--color-brand-lime) 100%);

	--Roboto: "Roboto", sans-serif;
}

.sp {
	display: block;
}

.pc {
	display: none;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 clamp(10px, 3vw, 23px);
}

/* 全体 */
.mv2603 {
	overflow: hidden;
	background: var(--grad-mv-bg);
}

/* hero */
.hero {
	padding: 90px 0 0;
}

.hero .container {
	display: flex;
	flex-direction: column;
	gap: min(76px, 1vw);
	align-items: center;
	padding: 0;
}

.hero-title {
	margin: 0;
	display: inline-block;
	padding: .1em .3em .17em;
	font-size: clamp(36px, 9.5vw, 64px);
	line-height: 1.1;
	font-weight: 800;
	color: var(--color-white);
	background: var(--grad-hero-title);
}

.hero-sub {
	font-size: clamp(7px, 3.8vw, 26px);
	font-weight: 700;
	background: var(--grad-hero-sub);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 2.3vw;
}

.stat-box {
	display: flex;
	align-items: center;
	gap: 2vw;
}

.stat-box div {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.stat-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2em;
	min-height: 2em;
	padding: .3em .3em;
	background: var(--grad-hero-sub);
	color: var(--color-white);
	font-size: clamp(10px, 3.2vw, 25px);
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
}

.stat-number {
	font-size: clamp(10px, 8vw, 78px);
	font-family: var(--Roboto);
	line-height: 1;
	font-weight: 700;
	color: var(--color-text-main);
}

.stat-unit {
	font-size: clamp(10px, 3.5vw, 30px);
	font-weight: 700;
	color: var(--color-text-main);
}

.stat-note {
	margin: -.2em 0 0;
	font-size: clamp(10px, 3vw, 23px);
	color: var(--color-text-dark);
	width: 100%;
	text-align: right;
	padding-right: 3vw;
}

.hero-visual {
	position: relative;
	margin-top: -5.1vw;
}

.hero-main-image {
	width: 100%;
	overflow: hidden;
}

.hero-main-image img {
	width: 100%;
	height: auto;
}

.hero-sub-images {
	position: absolute;
	right: 0;
	top: clamp(20px, 5vw, 53px);
	width: 100%;
}

.sub-image {
	font-size: 31.1vw;
	width: clamp(30px, 1em, 283px);
	height: clamp(30px, 1em, 283px);
	position: absolute;
}

.sub-image img {
	width: 100%;
	height: auto;
}

.sub-image:nth-child(1) {
	top: -.1em;
	left: 1.7em;
}

.sub-image:nth-child(2) {
	top: .5em;
	left: 2.3em;
	transform: scale(.7);
	transform-origin: top left;
}

/* proposal */
.proposal {
	padding: 2.8vw 0;
}

.proposal-text {
	display: inline-block;
	margin: 0 0 2.8vw;
	font-size: clamp(12px, 4.2vw, 32px);
	font-weight: 700;
	color: var(--color-text-main);
	text-align: center;
	vertical-align: middle;
}

.proposal-text span:nth-child(1),
.proposal-text span:nth-child(2) {
	padding: .1em .4em .15em;
	background: var(--color-text-main);
	color: var(--color-white);
}

.damage-gallery {}

.damage-gallery img {
	width: 100%;
}

/* CTA */
.cta2603 {
	padding: 6vw 0 4.2vw;
}

.cta-card {
	position: relative;
	padding: 0 clamp(10px, 3vw, 23px) 6vw;
	background: var(--color-bg-card);
	border-radius: 26px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 1vw;
}

.cta-card::after {
	content: "";
	display: block;
	position: absolute;
	width: 17.2vw;
	height: 24.6vw;
	top: -7.5vw;
	right: -2vw;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(../img/lp2603/operater.webp);
}

.cta-top-tags {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: .8em;
	font-size: clamp(18px, 3.7vw, 28px);
	font-weight: 800;
	color: var(--color-text-main);
	background-color: var(--color-white);
	padding: .3em .6em;
	letter-spacing: 0;
	width: fit-content;
	transform: translateY(-50%);
	margin-bottom: -2.5vw;
}

.cta-top-tags span {
	position: relative;
	line-height: 1;
}

.cta-top-tags span:nth-child(2n) {
	display: block;
	margin: .1em 0 0;
	width: 1px;
	height: 1.2em;
	background: var(--color-text-main);
}

.cta-top-tags span:not(:last-child)::after {
	display: block;
	content: "";
	position: absolute;
	right: -14px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 1.2em;
	background: var(--color-divider);
}

.cta-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cta-inner>div {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: .5vw;
}

.cta-inner>div.pc {
	display: none;
}

.cta-content {
	flex: 1;
	min-width: 0;
}

.cta-title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: .2em;
	font-size: clamp(16px, 4.6vw, 25px);
	font-weight: 800;
	color: var(--color-text-main);
}

.cta-title .highlight {
	display: inline-block;
	padding: .3em .6em;
	background: var(--color-text-main);
	color: var(--color-white);
}

.cta-phone {
	margin: 0;
	font-size: clamp(30px, 11.2vw, 61px);
	line-height: 1;
	font-family: var(--Roboto);
	font-weight: 900;
	letter-spacing: 0.02em;
	color: var(--color-text-main);
}

.cta-hours {
	font-size: clamp(12px, 3.7vw, 28px);
	color: var(--color-text-main);
	font-weight: 700;
}

.mail-button {
	width: 58vw;
	margin: 3vw 0;
}

.animal-section {
	text-align: center;
}

.animal-text {
	margin: 0 0 10px;
	font-size: 4.2vw;
	font-weight: 800;
	color: var(--color-text-dark);
}

.animal-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .5vw;
}

.animal-list img {
	width: 16%;
	height: 16%;
}

/* PC */
@media (min-width: 769px) {
	.sp {
		display: none;
	}

	.pc {
		display: block;
	}

	.hero {
		padding: 147px 0 0;
	}

	.hero .container {
		display: flex;
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
		max-width: 1200px;
		width: 100%;
		position: relative;
		z-index: 1;
		margin-bottom: 9px;
	}

	.hero-title {
		font-size: 63px;
	}

	.hero-sub {
		width: 620px;
		text-align: center;
		font-size: 25px;
	}

	.hero-stats {
		gap: 15px;
	}

	.hero-visual {
		position: absolute;
		width: 1194px;
		height: auto;
		top: 177px;
		left: 50%;
		transform: translateX(-263px);
	}

	.stat-note {
		width: 614px;
		font-size: 17px;
		margin-top: -18px;
		padding: 0;
	}

	.stat-label {
		font-size: 21px;
	}

	.stat-number {
		font-size: 63px;
	}

	.stat-box {
		gap: 6px;
	}

	.stat-unit {
		font-size: 23px;
	}

	.sub-image:nth-child(1) {
		left: 630px;
		top: 8px;
	}

	.sub-image:nth-child(2) {
		top: 168px;
		left: 788px;
	}

	.proposal {
		position: relative;
		padding: 0 0 13px;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		text-align: left;
	}

	.proposal-text {
		margin: 0 0 15px;
		font-size: 28px;
		text-align: center;
		width: 614px;
	}

	.damage-gallery {
		width: 614px;
	}

	.cta2603 {
		padding: 19px 0;
	}

	.cta-card::after {
		display: none;
	}

	.cta-card {
		width: 100%;
		max-width: 1094px;
		margin: 0 auto;
		padding: 0 21px 25px;
		row-gap: 25px;
	}

	.cta-title.highlight {
		padding: .2em .4em;
	}

	.cta-inner>div.pc {
		display: flex;
		flex-direction: column;
		align-items: center;
		row-gap: 0;
	}

	.cta-top-tags {
		font-size: 18px;
		margin-bottom: -36px;
	}

	.animal-text {
		font-size: 15px;
	}

	.cta-phone {
		font-size: 65px;
	}

	.cta-hours {
		font-size: 15px;
	}

	.cta-operator {
		width: 112px;
		height: 160px;
	}

	.cta-operator img {
		width: 100%;
		height: auto;
	}

	.mail-button {
		width: 259px;
		margin: 6px 0 0;
	}

	.animal-list img {
		width: 57px;
		height: 57px;
	}

	.mail-button {
		margin: 11px 0 0;
	}
}