img {
	width: 100%;
	height: auto;
}

* {
	box-sizing: border-box;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.forSp {
	display: none;
}

@media(max-width:768px) {
	.forSp {
		display: block;
	}
}

.l-main {
	min-height: 100vh;
}

.c-container {
	padding-inline: 16px;
}

.l-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: #fff;
	z-index: 100;
}

.l-header__inner {
	height: 80px;
	max-width: 1710px;
	width: 100%;
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.l-header__logo {
	max-width: 275px;
	width: 100%;
}

.l-header__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #c83030;
	color: #fff;
	text-decoration: none;
	border-radius: calc(infinity * 1px);
	height: 55px;
	max-width: 290px;
	width: 100%;
	padding-inline: 16px;
	font-weight: 500;
	border: 1px solid #c83030;
	transition: all 0.3s ease;
}

.l-header__cta .text {
	font-size: 24px;
}

.l-header__cta .price {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #fff;
	color: #c83030;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-align: center;
	border: 1px solid #c83030;
	transition: all 0.3s ease;
}

.l-header__cta .price small {
	font-size: 10px;
	translate: 0 1px;
}

.l-header__cta .arrow {
	font-size: 16px;
}

@media (any-hover: hover) {
	.l-header__cta:hover {
		background: #fff;
		color: #c83030;
	}

	.l-header__cta:hover .price {
		background: #c83030;
		color: #fff;
	}
}

@media screen and (max-width: 767px) {
	.l-header__logo {
		max-width: 170px;
	}

	.l-header__cta {
		padding-inline: 8px;
		height: 40px;
		max-width: 140px;
	}

	.l-header__cta .text {
		font-size: 16px;
	}

	.l-header__cta .price {
		width: 24px;
		height: 24px;
		font-size: 12px;
	}

	.l-header__cta .arrow {
		font-size: 14px;
	}
}

.l-footer {
	padding-block: 20px;
	background-color: #656565;
}

.l-footer__link-list {
	display: flex;
	justify-content: right;
	gap: 32px;
}

.l-footer__link-item {
	list-style: none;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}

.l-footer__link-item a {
	color: #fff;
	text-decoration: none;
}

.l-footer__copyright {
	font-size: 16px;
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.l-footer {
		padding-block: 10px;
	}
	
	.l-footer__link-list {
		justify-content: center;
		padding: 15px 0;
	}

	.l-footer__link-item {
		font-size: 12px;
	}

	.l-footer__copyright {
		font-size: 11px;
	}
}

.p-index-kv {
	margin-block-start: 80px;
	position: relative;
}

.p-index-kv__inner {
	position: absolute;
	/* bottom: calc((100 * 65 / 1920) * 1vw); */
	bottom: calc((100 * 15 / 1920) * 1vw);
	left: 50%;
	translate: -50% 0;
}

.p-index-kv__bubble {
	position: absolute;
	top: 5%;
	left: calc((100 * -10 / 1920) * 1vw);
	/* translate: -100% -50%; */
	translate: -100% -30%;
	width: calc((100 * 290 / 1920) * 1vw);
}

.p-index-kv__caption {
	margin-block-start: calc((100 * 20 / 1920) * 1vw);
	font-size: calc((100 * 14 / 1920) * 1vw);
	color: #fff;
	text-align: center;
}

.p-index-kv__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: calc((100 * 480 / 1920) * 1vw);
	height: calc((100 * 80 / 1920) * 1vw);
	border-radius: calc(infinity * 1px);
	text-decoration: none;
	background-color: #cb3333;
	border: calc((100 * 1 / 1920) * 1vw) solid #cb3333;
	color: #fff;
	padding-inline: calc((100 * 20 / 1920) * 1vw);
	font-size: calc((100 * 24 / 1920) * 1vw);
	font-weight: 600;
	transition: all 0.3s ease;
}

.p-index-kv__btn .main {
	font-size: calc((100 * 30 / 1920) * 1vw);
	color: #ffff99;
	transition: all 0.3s ease;
}

.p-index-kv__btn .text {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.p-index-kv__btn::before {
	content: "";
	display: block;
}

@media (any-hover: hover) {
	.p-index-kv__btn:hover {
		background-color: #fff;
		color: #cb3333;
	}

	.p-index-kv__btn:hover .main {
		color: #cb3333;
	}
}

@media screen and (max-width: 767px) {
	.p-index-kv__btn {
		width: 100%;
		font-size: 18px;
		height: 50px;
	}

	.p-index-kv__inner {
		width: calc(100% - 40px);
		/* padding-inline: 16px; */
		bottom: 26px;
	}

	.p-index-kv__btn .main {
		font-size: 20px;
	}

	.p-index-kv__caption {
		margin-block-start: 10px;
		font-size: 12px;
	}

	.p-index-kv__bubble {
		/* display: none; */
		position: absolute;
		top: -60px;
		left: 30%;
		translate: -100% -50%;
		width: 125px;
	}
}

.p-index-kv__headline {
	--kv-outline: #00569f;
	--kv-drop: #0086bd;
	position: absolute;
	z-index: 2;
	top: 45%;
	left: 50%;
	translate: -50% -50%;
	margin: 0;
	font-size: 4.5rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.p-index-kv__headline:not(.p-index-kv__headline--chars):not(.p-index-kv__headline--pop) {
	opacity: 0;
	animation: p-index-kv__headline-stamp 0.6s cubic-bezier(0.2, 0.8, 0.3, 1) 0.2s both;
}

.p-index-kv__headline--pop:not(.p-index-kv__headline--chars) {
	opacity: 0;
	animation: p-index-kv__headline-pop 0.6s cubic-bezier(0.2, 0.8, 0.3, 1) 0.2s both;
}

.p-index-kv__headline--chars:not(.p-index-kv__headline--pop) .p-index-kv__headline-part {
	opacity: 0;
	animation: p-index-kv__headline-stamp 0.45s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

.p-index-kv__headline--chars.p-index-kv__headline--pop .p-index-kv__headline-part {
	opacity: 0;
	animation: p-index-kv__headline-pop 0.45s cubic-bezier(0.2, 0.8, 0.3, 1) both;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(1) {
	animation-delay: 0.15s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(2) {
	animation-delay: 0.21s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(3) {
	animation-delay: 0.27s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(4) {
	animation-delay: 0.33s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(5) {
	animation-delay: 0.39s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(6) {
	animation-delay: 0.45s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(7) {
	animation-delay: 0.51s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(8) {
	animation-delay: 0.57s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(9) {
	animation-delay: 0.63s;
}

.p-index-kv__headline--chars .p-index-kv__headline-part:nth-child(10) {
	animation-delay: 0.69s;
}

@keyframes p-index-kv__headline-stamp {
	0% {
		opacity: 0;
		scale: 1.9;
	}

	55% {
		opacity: 1;
		scale: 0.92;
	}

	75% {
		scale: 1.05;
	}

	90% {
		scale: 0.98;
	}

	100% {
		opacity: 1;
		scale: 1;
	}
}

@keyframes p-index-kv__headline-pop {
	0% {
		opacity: 0;
		scale: 0.3;
	}

	60% {
		opacity: 1;
		scale: 1.12;
	}

	80% {
		scale: 0.96;
	}

	100% {
		opacity: 1;
		scale: 1;
	}
}

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

	.p-index-kv__headline,
	.p-index-kv__headline-part {
		animation: none;
		opacity: 1;
	}
}

.p-index-kv__headline-part {
	display: inline-block;
	position: relative;
	isolation: isolate;
}

.p-index-kv__headline-small {
	font-size: 0.8em;
	vertical-align: bottom;
}

.p-index-kv__headline-part::before {
	content: attr(data-text);
	position: absolute;
	inset: 0 -0.0577em -0.2308em -0.0577em;
	z-index: 0;
	color: var(--kv-drop);
	-webkit-text-fill-color: var(--kv-drop);
	-webkit-text-stroke: 0;
	clip-path: inset(0% 0 0 0);
	transform: translate(6px, 9px);
}

.p-index-kv__headline-front {
	position: relative;
	z-index: 1;
	color: #fff;
	-webkit-text-fill-color: #fff;
	paint-order: stroke fill;
	-webkit-text-stroke: 0.19em var(--kv-outline);
	text-shadow:
		0 0.0385em 0 var(--kv-outline),
		0.0385em 0 0 var(--kv-outline),
		0 -0.0385em 0 var(--kv-outline),
		-0.0385em 0 0 var(--kv-outline),
		0.0385em 0.0385em 0 var(--kv-outline),
		-0.0385em 0.0385em 0 var(--kv-outline),
		0.0385em -0.0385em 0 var(--kv-outline),
		-0.0385em -0.0385em 0 var(--kv-outline),
		0.0288em 0.0288em 0 var(--kv-outline),
		-0.0288em 0.0288em 0 var(--kv-outline),
		0.0288em -0.0288em 0 var(--kv-outline),
		-0.0288em -0.0288em 0 var(--kv-outline),
		0 0.0288em 0 var(--kv-outline),
		0.0288em 0 0 var(--kv-outline),
		0 -0.0288em 0 var(--kv-outline),
		-0.0288em 0 0 var(--kv-outline);
}

.p-index-kv__headline-accent-outline {
	position: absolute;
	inset: 0;
	z-index: 1;
	color: transparent;
	-webkit-text-fill-color: transparent;
	paint-order: stroke fill;
	-webkit-text-stroke: 0.19em var(--kv-outline);
	text-shadow:
		0 0.0385em 0 var(--kv-outline),
		0.0385em 0 0 var(--kv-outline),
		0 -0.0385em 0 var(--kv-outline),
		-0.0385em 0 0 var(--kv-outline),
		0.0385em 0.0385em 0 var(--kv-outline),
		-0.0385em 0.0385em 0 var(--kv-outline),
		0.0385em -0.0385em 0 var(--kv-outline),
		-0.0385em -0.0385em 0 var(--kv-outline);
}

.p-index-kv__headline-accent-fill {
	position: relative;
	z-index: 2;
	display: inline-block;
	color: #ffffa0;
	background-image: linear-gradient(to top, #fffffa 0%, #ffffa0 100%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media screen and (max-width: 767px) {
	.p-index-kv__headline {
		/* top: 37%; */
		top: 30%;
		font-size: 1.8rem;
	}

	.p-index-kv__headline-part::before {
		transform: translate(4px, 5px);
	}
}

.p-index-intro {
	padding-block: calc((100 * 100 / 1920) * 1vw) calc((100 * 120 / 1920) * 1vw);
}

.p-index-intro__inner {
	max-width: calc((100 * 1130 / 1920) * 1vw);
	width: 100%;
	margin-inline: auto;
}

.p-index-intro__title {
	font-size: calc((100 * 42 / 1920) * 1vw);
	text-align: center;
	line-height: 1.5;
}

.p-index-intro__title span {
	color: #cc3333;
}

.p-index-intro__body {
	margin-block-start: calc((100 * 60 / 1920) * 1vw);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: flex-end;
}

.p-index-intro__text {
	max-width: calc((100 * 448 / 1920) * 1vw);
	width: 100%;
}

.p-index-intro__note {
	font-size: calc((100 * 18 / 1920) * 1vw);
	line-height: 2;
}

.p-index-intro__copy {
	margin-block-start: calc((100 * 30 / 1920) * 1vw);
	font-size: calc((100 * 24 / 1920) * 1vw);
	font-weight: 500;
	line-height: 2;
}

.p-index-intro__copy span {
	background: linear-gradient(transparent 60%, #ffff99 60%);
	font-feature-settings: "palt";
}

.pc-none {
	display: none;
}

.sp-none {
	display: block;
}

@media screen and (max-width: 767px) {
	.p-index-intro {
		padding-block: 50px 60px;
	}

	.p-index-intro__title {
		font-size: 24px;
	}

	.p-index-intro__body {
		margin-block-start: 40px;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.p-index-intro__note {
		font-size: 16px;
	}

	.p-index-intro__copy {
		margin-block-start: 20px;
		font-size: 18px;
	}

	.pc-none {
		display: block;
	}

	.sp-none {
		display: none;
	}

	.p-index-intro__inner,
	.p-index-intro__text {
		max-width: 100%;
	}
}

.p-index-peace {
	background-color: #00559d;
}

.p-index-peace__inner {
	max-width: calc((100 * 1740 / 1920) * 1vw);
	width: 100%;
	margin-inline: auto;
	padding-block: calc((100 * 100 / 1920) * 1vw) calc((100 * 120 / 1920) * 1vw);
}

.p-index-peace__title {
	text-align: center;
	font-size: calc((100 * 48 / 1920) * 1vw);
	color: #fff;
	line-height: 1.5;
}

.p-index-peace__title strong {
	font-size: calc((100 * 60 / 1920) * 1vw);
	color: #ffff66;
}

.p-index-peace__list {
	margin-block-start: calc((100 * 90 / 1920) * 1vw);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: calc((100 * 70 / 1920) * 1vw);
	padding: 0;
}

.p-index-peace__item {
	border-radius: calc((100 * 16 / 1920) * 1vw);
	background-color: #ffffff;
	border: calc((100 * 3 / 1920) * 1vw) solid #ffffff;
}

.p-index-peace__item {
	list-style-type: none;
}

.p-index-peace__item__title {
	background-color: #c9dded;
	border-radius: calc((100 * 13 / 1920) * 1vw) calc((100 * 13 / 1920) * 1vw) 0 0;
	padding: calc((100 * 20 / 1920) * 1vw) calc((100 * 26 / 1920) * 1vw);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.p-index-peace__item__title .number {
	font-size: calc((100 * 36 / 1920) * 1vw);
	color: #00559e;
}

.p-index-peace__item__title .text {
	font-size: calc((100 * 30 / 1920) * 1vw);
	color: #00559e;
	font-weight: 600;
}

.p-index-peace__item__title .text .main {
	font-size: calc((100 * 36 / 1920) * 1vw);
	color: #fff;
	-webkit-text-stroke: calc((100 * 4 / 1920) * 1vw) #00559e;
	text-stroke: calc((100 * 4 / 1920) * 1vw) #00559e;
	paint-order: stroke;
	margin-inline-end: calc((100 * 5 / 1920) * 1vw);
}

.p-index-peace__item__title::after {
	content: "";
	display: block;
}

.p-index-peace__note {
	font-size: calc((100 * 22 / 1920) * 1vw);
	text-align: center;
}

.p-index-peace__item__inner {
	padding-block-start: calc((100 * 40 / 1920) * 1vw);
	padding-inline: calc((100 * 20 / 1920) * 1vw);
}

.p-index-peace__arrow {
	width: calc((100 * 90 / 1920) * 1vw);
	margin-block: calc((100 * 28 / 1920) * 1vw) calc((100 * 20 / 1920) * 1vw);
	margin-inline: auto;
}

.p-index-peace__copy {
	font-size: calc((100 * 30 / 1920) * 1vw);
	color: #00559e;
	font-weight: 600;
	text-align: center;
	background: linear-gradient(transparent 40%, #ffff99 60%);
	width: fit-content;
	margin-inline: auto;
}

.p-index-peace__body {
	margin-block-start: calc((100 * 25 / 1920) * 1vw);
	display: grid;
	grid-template-columns: calc((100 * 205 / 1920) * 1vw) auto;
	gap: calc((100 * 16 / 1920) * 1vw);
	align-items: center;
}

.p-index-peace__body__text {
	font-size: calc((100 * 18 / 1920) * 1vw);
}

.p-index-peace__body__text span {
	color: #cc3333;
	font-weight: 600;
}

@media screen and (max-width: 767px) {
	.p-index-peace__inner {
		padding-block: 50px 60px;
		max-width: 100%;
	}

	.p-index-peace__title {
		font-size: 20px;
	}

	.p-index-peace__title strong {
		font-size: 30px;
	}

	.p-index-peace__list {
		margin-block-start: 45px;
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.p-index-peace__item {
		border-radius: 6px;
	}

	.p-index-peace__item__title {
		border-radius: 6px 6px 0 0;
		padding: 20px 16px;
	}

	.p-index-peace__item__title .number {
		font-size: calc(36px * 0.8);
	}

	.p-index-peace__item__title .text {
		font-size: calc(30px * 0.8);
	}

	.p-index-peace__item__title .text .main {
		font-size: calc(36px * 0.8);
	}

	.p-index-peace__item__inner {
		padding-block-start: 20px;
		padding-inline: 16px;
	}

	.p-index-peace__note {
		font-size: calc(22px * 0.8);
	}

	.p-index-peace__arrow {
		width: 45px;
		margin-block: 14px 10px;
	}

	.p-index-peace__copy {
		font-size: calc(30px * 0.8);
	}

	.p-index-peace__body {
		grid-template-columns: 100px auto;
		gap: 8px;
	}

	.p-index-peace__body__text {
		font-size: calc(18px * 0.8);
	}
}

.p-index-cta {
	background-color: #ffff99;
}

.p-index-cta {
	position: relative;
	z-index: 1;
}

.p-index-cta__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.p-index-cta__wrapper {
	display: grid;
	grid-template-columns: auto 1fr auto;
	max-width: calc((100 * 1190 / 1920) * 1vw);
	width: 100%;
	margin-inline: auto;
	padding-block: calc((100 * 100 / 1920) * 1vw) calc((100 * 50 / 1920) * 1vw);
	align-items: flex-end;
}

.p-index-cta__image.is-i02 {
	max-width: calc((100 * 139 / 1920) * 1vw);
	width: 100%;
}

.p-index-cta__image.is-i01 {
	max-width: calc((100 * 107 / 1920) * 1vw);
	width: 100%;
}

.p-index-cta__title {
	text-align: center;
	font-size: calc((100 * 48 / 1920) * 1vw);
	color: #00569e;
}

.p-index-cta__note {
	margin-block-start: calc((100 * 45 / 1920) * 1vw);
	font-size: calc((100 * 21 / 1920) * 1vw);
	text-align: center;
}

.p-index-cta__btn {
	/* margin-block-start: calc((100 * 60 / 1920) * 1vw); */
	margin-block-start: calc((100 * 20 / 1920) * 1vw);
	max-width: calc((100 * 480 / 1920) * 1vw);
	width: 100%;
	height: calc((100 * 80 / 1920) * 1vw);
	border-radius: calc(infinity * 1px);
	background-color: #cc3333;
	border: calc((100 * 1 / 1920) * 1vw) solid #cc3333;
	color: #fff;
	font-size: calc((100 * 24 / 1920) * 1vw);
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-inline: calc((100 * 20 / 1920) * 1vw);
	margin-inline: auto;
	font-weight: 600;
	transition: all 0.3s ease;
}

.p-index-cta__btn::before {
	content: "";
	display: block;
}

.p-index-cta__btn .main {
	font-size: calc((100 * 30 / 1920) * 1vw);
	color: #ffff99;
	transition: all 0.3s ease;
}

.p-index-cta__btn .text {
	display: flex;
	align-items: center;
}

@media (any-hover: hover) {
	.p-index-cta__btn:hover {
		background-color: #fff;
		color: #cc3333;
	}

	.p-index-cta__btn:hover .main {
		color: #cc3333;
	}
}

@media screen and (max-width: 767px) {
	.p-index-cta__wrapper {
		grid-template-columns: 1fr;
		padding-block: 40px 40px;
		max-width: 100%;
	}

	.p-index-cta__title {
		font-size: 20px;
	}

	.p-index-cta__note {
		margin-block-start: 20px;
		font-size: 14px;
	}

	.p-index-cta__btn {
		/* margin-block-start: 30px; */
		margin-block-start: 12px;
		font-size: 18px;
		height: 50px;
		max-width: 100%;
	}

	.p-index-cta__btn .main {
		font-size: 22px;
	}

	.p-index-cta__image.is-i01 {
		display: none;
	}

	.p-index-cta__image.is-i02 {
		display: none;
	}
}

.p-index-difference {
	position: relative;
	z-index: 1;
	overflow: clip;
}

.p-index-difference__bg {
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
	width: 100%;
}

.p-index-difference__inner {
	padding-block: calc((100 * 100 / 1920) * 1vw) calc((100 * 110 / 1920) * 1vw);
	max-width: calc((100 * 1190 / 1920) * 1vw);
	width: 100%;
	margin-inline: auto;
}

.p-index-difference__title {
	text-align: center;
	font-size: calc((100 * 42 / 1920) * 1vw);
	font-weight: 700;
}

.p-index-difference__note {
	margin-block-start: calc((100 * 30 / 1920) * 1vw);
	font-size: calc((100 * 18 / 1920) * 1vw);
	text-align: center;
}

.p-index-difference__table {
	margin-block-start: calc((100 * 35 / 1920) * 1vw);
}

.p-index-difference__table__inner.is-sp {
	display: none;
}

.p-index-difference__compare {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.p-index-difference__compare col.is-label {
	width: 13%;
}

.p-index-difference__compare col.is-normal {
	width: 33%;
}

.p-index-difference__compare col.is-highlight {
	width: 54%;
}

.p-index-difference__compare th,
.p-index-difference__compare td {
	padding: 10px 6px;
	border-bottom: 1px solid #00559d;
	color: #222;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}

.p-index-difference__compare tr:last-child th,
.p-index-difference__compare tr:last-child td {
	border-bottom: none;
}

.p-index-difference__compare th.is-label {
	background: #f3f3f3;
	font-weight: 700;
}

.p-index-difference__compare td.is-normal,
.p-index-difference__compare th.is-normal {
	background: #fff;
}

.p-index-difference__compare th.is-normal {
	color: #00559d;
	font-size: 13px;
	font-weight: 700;
}

@media(max-width:768px) {
	.p-index-difference__compare th.is-normal {
		font-size: 12px;
	}
}

.p-index-difference__compare td.is-highlight {
	background: #fffee6;
	font-weight: 700;
}

.p-index-difference__compare th.is-highlight {
	background: #00559d;
	padding: 10px 8px;
}

.p-index-difference__compare-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 4px;
}

.p-index-difference__compare-head-text {
	text-align: left;
}

.p-index-difference__compare-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	background: #fff;
	color: #00559d;
	font-size: 10px;
	font-weight: 700;
	white-space: nowrap;
}

.p-index-difference__compare-catch {
	margin-block-start: 3px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.p-index-difference__compare-catch .is-accent {
	color: #ffff66;
}

.p-index-difference__compare-illustration {
	width: 46px;
	height: auto;
	flex-shrink: 0;
}

.p-index-difference__back {
	margin-block-start: calc((100 * 40 / 1920) * 1vw);
	text-align: center;
}

.p-index-difference__back-btn {
	display: inline-block;
	padding: 16px 48px;
	border-radius: 999px;
	background: #00559d;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s;
}

.p-index-difference__back-btn:hover {
	background: #004080;
}

@media screen and (max-width: 767px) {
	.p-index-difference__inner {
		padding-block: 50px 60px;
		max-width: 100%;
	}

	.p-index-difference__table__inner.is-pc {
		display: none;
	}

	.p-index-difference__table__inner.is-sp {
		display: block;
		margin-block-start: 10px;
		border-radius: 16px;
		overflow: hidden;
		border: 2px solid #00559d;
	}

	.p-index-difference__title {
		font-size: 19px;
	}

	.p-index-difference__note {
		margin-block-start: 20px;
		font-size: 16px;
	}

	.p-index-difference__back {
		margin-block-start: 30px;
	}

	.p-index-difference__back-btn {
		width: 100%;
		padding: 14px 20px;
		font-size: 15px;
	}
}

/* Contact Form 7 マルチステップ — CF7フォーム内に <style> で貼り付け */

.cf7-ms {
	max-width: 640px;
	margin-inline: auto;
	font-family: "Noto Sans JP", sans-serif;
}

/* プログレス */
.cf7-ms__progress {
	display: flex;
	gap: 8px;
	margin-block-end: 32px;
	padding: 0;
	list-style: none;
	counter-reset: step;
}

.cf7-ms__progress-item {
	flex: 1;
	position: relative;
	text-align: center;
	font-size: 11px;
	color: #999;
	padding-block-start: 28px;
}

.cf7-ms__progress-item::before {
	counter-increment: step;
	content: counter(step);
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #e0e0e0;
	color: #666;
	font-size: 12px;
	font-weight: 600;
	line-height: 24px;
}

.cf7-ms__progress-item::after {
	content: "";
	position: absolute;
	top: 11px;
	left: calc(50% + 14px);
	width: calc(100% - 28px);
	height: 2px;
	background: #e0e0e0;
}

.cf7-ms__progress-item:last-child::after {
	display: none;
}

.cf7-ms__progress-item.is-active,
.cf7-ms__progress-item.is-done {
	color: #00559d;
	font-weight: 500;
}

.cf7-ms__progress-item.is-active::before,
.cf7-ms__progress-item.is-done::before {
	background: #00559d;
	color: #fff;
}

.cf7-ms__progress-item.is-done::after {
	background: #00559d;
}

/* ステップ */
.cf7-ms__step {
	display: none;
}

.cf7-ms__step.is-active {
	display: block;
	animation: cf7MsFadeIn 0.3s ease;
}

@keyframes cf7MsFadeIn {
	from {
		opacity: 0;
		translate: 0 8px;
	}

	to {
		opacity: 1;
		translate: 0 0;
	}
}

.cf7-ms__step-title {
	margin-block: 0 24px;
	font-size: 20px;
	font-weight: 600;
	color: #333;
	text-align: center;
}

/* フィールド */
.cf7-ms .wpcf7-form-control-wrap {
	display: block;
	margin-block-end: 20px;
}

.cf7-ms label {
	display: block;
	margin-block-end: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
}

.cf7-ms label .required {
	color: #c83030;
	font-size: 12px;
	margin-inline-start: 4px;
}

.cf7-ms input[type="text"],
.cf7-ms input[type="email"],
.cf7-ms input[type="tel"],
.cf7-ms input[type="number"],
.cf7-ms input[type="date"],
.cf7-ms select,
.cf7-ms textarea {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s;
}

.cf7-ms input[type="date"] {
	-webkit-appearance: none;
	appearance: none;
}

.cf7-ms input:focus,
.cf7-ms select:focus,
.cf7-ms textarea:focus {
	outline: none;
	border-color: #00559d;
}

.cf7-ms select:disabled {
	background: #f5f5f5;
	color: #999;
	cursor: not-allowed;
}

.cf7-ms input[type="file"] {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
}

.cf7-ms__file-status {
	margin-block: 6px 0;
	font-size: 13px;
}

.cf7-ms__file-status.is-success {
	color: #1a7f37;
}

.cf7-ms__file-status.is-error {
	color: #c83030;
}

.cf7-ms textarea {
	min-height: 120px;
	resize: vertical;
}

.cf7-ms .wpcf7-form-control.wpcf7-radio {
	display: flex;
	gap: 10px;
}

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

.cf7-ms .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-block-end: 0;
	padding: 10px 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.cf7-ms .wpcf7-list-item input[type="radio"] {
	accent-color: #00559d;
}

.cf7-ms .wpcf7-not-valid-tip {
	font-size: 12px;
	color: #c83030;
	margin-block-start: 4px;
}

.cf7-ms .wpcf7-form-control-wrap.is-error input,
.cf7-ms .wpcf7-form-control-wrap.is-error select,
.cf7-ms .wpcf7-form-control-wrap.is-error textarea {
	border-color: #c83030;
}

/* Step4 フェーズ切替 */
.cf7-ms__phase {
	display: none;
}

.cf7-ms__phase.is-active {
	display: block;
	animation: cf7MsFadeIn 0.35s ease;
}

/* 分析中 */
.cf7-ms__analysis {
	text-align: center;
	padding: 48px 20px;
	background: #f5f9fc;
	border-radius: 12px;
	border: 1px solid #c9dded;
}

.cf7-ms__analysis-label {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	color: #00559d;
}

.cf7-ms__analysis-sub {
	margin: 16px 0 0;
	font-size: 14px;
	color: #666;
}

.cf7-ms__analysis-spinner {
	width: 48px;
	height: 48px;
	margin: 24px auto 0;
	border: 4px solid #c9dded;
	border-top-color: #00559d;
	border-radius: 50%;
	animation: cf7MsSpin 0.9s linear infinite;
}

@keyframes cf7MsSpin {
	to {
		transform: rotate(360deg);
	}
}

/* シミュレーション結果カード */
.cf7-ms__result-card {
	padding: 28px 22px 22px;
	margin: 0 0 20px;
	background: linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
	border-radius: 18px;
	box-shadow: 0 14px 40px rgba(28, 78, 140, 0.12);
	text-align: center;
}

@media(max-width:768px) {
	.cf7-ms__result-card {
		padding: 28px 0px 22px;
	}
}

.cf7-ms__result-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 22px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: linear-gradient(180deg, #e8f2ff 0%, #dcecff 100%);
	color: #0c63d8;
	font-size: 18px;
	font-weight: 800;
}

.cf7-ms__badge-icon {
	font-size: 13px;
	letter-spacing: -3px;
}

.cf7-ms__main-result {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 18px;
}

.cf7-ms__result-label {
	font-size: clamp(20px, 4vw, 28px);
	font-weight: 900;
	color: #101f3d;
}

.cf7-ms__result-price {
	position: relative;
	display: inline-block;
	font-size: clamp(34px, 8vw, 60px);
	font-weight: 900;
	line-height: 1;
	color: #075fd4;
	letter-spacing: 0.02em;
}

.cf7-ms__result-price::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 10px;
	background: #fff09a;
	z-index: -1;
}

.cf7-ms__result-price,
.cf7-ms__countup {
	position: relative;
	z-index: 1;
}

.cf7-ms__support-note {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 24px;
	padding: 10px 22px;
	border-radius: 999px;
	background: #eef5ff;
	font-size: clamp(13px, 2vw, 16px);
	font-weight: 700;
	color: #333;
}

@media(max-width:768px) {
	.cf7-ms__support-note {
		gap: 5px;
		font-size: 12px;
		padding: 10px;
	}
}

.cf7-ms__support-highlight {
	color: #075fd4;
	font-weight: 900;
	white-space: nowrap;
}

.cf7-ms__shield {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #176bdc;
	border-radius: 50%;
	color: #176bdc;
	font-weight: 900;
	font-size: 13px;
	flex-shrink: 0;
}

@media(max-width:768px) {
	.cf7-ms__shield {
		width: 20px;
		height: 20px;
	}
}

.cf7-ms__chart-card {
	padding: 20px 16px 14px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(28, 78, 140, 0.1);
}

.cf7-ms__chart-title {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 14px;
	margin: 0 0 18px;
	font-size: 16px;
	font-weight: 900;
	color: #0f2d62;
}

.cf7-ms__chart-title span {
	height: 2px;
	background: #d4ddea;
}

.cf7-ms__chart-area {
	display: grid;
	grid-template-columns: 80px 1fr;
	min-height: 260px;
}

.cf7-ms__y-axis {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 8px 8px 56px 0;
	text-align: right;
	font-size: 12px;
	font-weight: 600;
	color: #253858;
}

.cf7-ms__chart-main {
	position: relative;
	border-left: 2px solid #d7deea;
	border-bottom: 3px solid #14213d;
}

.cf7-ms__grid {
	position: absolute;
	left: 0;
	right: 0;
	border-top: 2px dashed #d7deea;
}

.cf7-ms__grid--top {
	top: 0;
}

.cf7-ms__grid--mid {
	top: 33.3%;
}

.cf7-ms__grid--bottom {
	top: 66.6%;
}

.cf7-ms__bars {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 36px;
	padding: 0 24px;
}

.cf7-ms__bar-item {
	position: relative;
	width: 150px;
	height: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.cf7-ms__bar-track {
	position: relative;
	width: 100%;
	flex: 1 1 0%;
	min-height: 0;
	display: flex;
	align-items: flex-end;
}

.cf7-ms__bar {
	width: 100%;
	border-radius: 8px 8px 0 0;
	transform-origin: bottom;
	transform: scaleY(0);
	animation: cf7MsBarGrow 1.2s ease-out forwards;
}

.cf7-ms__bar-item--as-is .cf7-ms__bar {
	background: linear-gradient(180deg, #aeb9c9 0%, #7f8da2 100%);
	animation-delay: 0.4s;
}

.cf7-ms__bar-item--kk .cf7-ms__bar {
	background: linear-gradient(180deg, #3289ff 0%, #005bd5 100%);
	animation-delay: 0.8s;
}

.cf7-ms__bar-label {
	margin: 14px 0 0;
	padding: 6px 18px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.cf7-ms__bar-item--as-is .cf7-ms__bar-label {
	background: #d7dce4;
	color: #1e2d45;
}

.cf7-ms__bar-item--kk .cf7-ms__bar-label {
	background: #075fd4;
	color: #fff;
}

.cf7-ms__bar-price {
	margin: 8px 0 0;
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.cf7-ms__bar-item--as-is .cf7-ms__bar-price {
	color: #253858;
}

.cf7-ms__bar-item--kk .cf7-ms__bar-price {
	color: #075fd4;
}

.cf7-ms__balloon {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	padding: 8px 14px;
	background: #7e8999;
	color: #fff;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 900;
	white-space: nowrap;
	z-index: 3;
}

.cf7-ms__balloon::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -14px;
	transform: translateX(-50%);
	border-width: 14px 7px 0 7px;
	border-style: solid;
	border-color: #7e8999 transparent transparent transparent;
}

.cf7-ms__top-price {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	font-size: 17px;
	font-weight: 900;
	color: #b98900;
	white-space: nowrap;
}

.cf7-ms__crown {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 22px;
	color: #f0bf29;
}

.cf7-ms__arrow {
	width: 70px;
	height: 50px;
	margin-bottom: 90px;
	border-top: 3px dashed #263c5f;
	transform: rotate(-35deg);
	position: relative;
}

.cf7-ms__arrow::after {
	content: "";
	position: absolute;
	right: -2px;
	top: -8px;
	width: 12px;
	height: 12px;
	border-top: 3px solid #263c5f;
	border-right: 3px solid #263c5f;
	transform: rotate(45deg);
}

.cf7-ms__caption {
	margin: 18px 0 0;
	font-size: 12px;
	color: #42526e;
	font-weight: 600;
}

@media(max-width:768px) {
	.cf7-ms__caption {
		margin: 18px 40px 0;
	}
}

@keyframes cf7MsBarGrow {
	from {
		transform: scaleY(0);
	}

	to {
		transform: scaleY(1);
	}
}

.cf7-ms__result-lead,
.cf7-ms__photo-note {
	margin: 0 0 20px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

@media(max-width:768px) {
	.cf7-ms__result-lead {
		font-size: 13px;
	}
}

/* ナビボタン */
.cf7-ms__nav {
	display: flex;
	gap: 12px;
	margin-block-start: 28px;
	align-items: stretch;
}

.cf7-ms__nav .cf7-ms__btn[hidden] {
	display: none;
}

.cf7-ms__nav:has(.cf7-ms__btn--prev[hidden]) .cf7-ms__btn--next,
.cf7-ms__nav:has(.cf7-ms__btn--prev[hidden]) .cf7-ms__submit-wrap {
	flex: 1;
}

.cf7-ms__btn {
	flex: 1;
	padding: 14px 20px;
	border: none;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.2s;
}

@media(max-width:768px) {
	.cf7-ms__btn {
		font-size: 14px;
	}
}

.cf7-ms__btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.cf7-ms__btn--prev,
.cf7-ms__btn--record {
	background: #fff;
	color: #00559d;
	border: 1px solid #00559d;
}

.cf7-ms__btn--prev:hover,
.cf7-ms__btn--record:hover {
	background: #f5f9fc;
}

.cf7-ms__btn--next {
	background: #00559d;
	color: #fff;
}

.cf7-ms__btn--next:hover {
	background: #004080;
}

.cf7-ms__btn--submit {
	background: #c83030;
	color: #fff;
	flex: 1;
}

.cf7-ms__btn--submit:hover {
	background: #a82828;
}

/* 送信ボタン（Step4 のナビ内） */
.cf7-ms .cf7-ms__submit-wrap {
	flex: 1;
	display: none;
}

.cf7-ms__step.is-active .cf7-ms__submit-wrap.is-visible,
.cf7-ms__step.is-active .cf7-ms__submit-wrap {
	display: block;
}

.cf7-ms .cf7-ms__submit-wrap .wpcf7-submit {
	width: 100%;
	padding: 14px 20px;
	border: none;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	font-family: inherit;
	background: #c83030;
	color: #fff;
	cursor: pointer;
	transition: background 0.2s;
}

.cf7-ms .cf7-ms__submit-wrap .wpcf7-submit:hover {
	background: #a82828;
}

@media screen and (max-width: 767px) {
	.cf7-ms__progress-item {
		font-size: 0;
	}

	.cf7-ms__progress-item.is-active {
		font-size: 10px;
	}

	.cf7-ms__chart-card {
		position: relative;
	}

	.cf7-ms__chart-area {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.cf7-ms__bars {
		gap: 16px;
		padding: 0 12px;
	}

	.cf7-ms__bar-item {
		width: 0;
		flex: 1 1 0;
		min-width: 0;
	}

	.cf7-ms__bar-label,
	.cf7-ms__bar-price {
		font-size: 12px;
	}

	.cf7-ms__arrow {
		width: 50px;
	}

	.cf7-ms__analysis {
		padding: 36px 16px;
	}
}

/* CF7 Multi Step Module: 確認画面 */
.cf7-ms-plugin {
	max-width: 760px;
	margin-inline: auto;
}

.cf7-ms-plugin__title {
	margin: 0;
	font-size: 32px;
	text-align: center;
	color: #00559d;
}

.cf7-ms-plugin__lead {
	margin: 16px 0 28px;
	text-align: center;
	font-size: 15px;
	line-height: 1.8;
	color: #555;
}

.cf7-ms-plugin__section {
	border: 1px solid #c9dded;
	border-radius: 12px;
	background: #fff;
	padding: 24px;
}

.cf7-ms-plugin__list {
	margin: 0;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 10px 18px;
	align-items: start;
}

.cf7-ms-plugin__list dt {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #00559d;
	padding-top: 2px;
}

.cf7-ms-plugin__list dd {
	margin: 0;
	font-size: 15px;
	color: #222;
	line-height: 1.8;
	word-break: break-word;
}

.cf7-ms-plugin__estimate-value {
	font-size: 28px;
	font-weight: 700;
	color: #c83030;
}

.cf7-ms-plugin__estimate-note {
	margin: 14px 0 0;
	font-size: 12px;
	color: #777;
}

.cf7-ms-plugin__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-block-start: 24px;
}

.cf7-ms-plugin .wpcf7-previous,
.cf7-ms-plugin .wpcf7-submit {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 180px;
	height: 52px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 16px;
	font-weight: 600;
	font-family: inherit;
	margin: 0;
	cursor: pointer;
	transition: all 0.2s ease;
	flex: 1;
}

.cf7-ms-plugin .wpcf7-previous {
	background: #fff;
	color: #00559d;
	border-color: #00559d;
}

.cf7-ms-plugin .wpcf7-previous:hover {
	background: #f2f8fd;
}

.cf7-ms-plugin .wpcf7-submit {
	background: #c83030;
	color: #fff;
}

.cf7-ms-plugin .wpcf7-submit:hover {
	background: #b12a2a;
}

@media screen and (max-width: 767px) {
	.cf7-ms-plugin__title {
		font-size: 24px;
	}

	.cf7-ms-plugin__lead {
		font-size: 14px;
		margin: 12px 0 20px;
	}

	.cf7-ms-plugin__section {
		padding: 16px;
	}

	.cf7-ms-plugin__list {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.cf7-ms-plugin__list dt {
		margin-top: 10px;
		font-size: 13px;
	}

	.cf7-ms-plugin__list dt:first-child {
		margin-top: 0;
	}

	.cf7-ms-plugin__list dd {
		font-size: 14px;
	}

	.cf7-ms-plugin__estimate-value {
		font-size: 24px;
	}

	.cf7-ms-plugin .wpcf7-previous,
	.cf7-ms-plugin .wpcf7-submit {
		width: 100%;
		min-width: 0;
	}
}

.modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: none;
	justify-content: center;
	align-items: flex-start;
	padding: 40px 16px;
	background: rgba(0, 0, 0, 0.5);
	overflow-y: auto;
}

.modal.is-active {
	display: block;
}

.modal__content {
	margin-block: 100px;
	margin-inline: auto;
	position: relative;
	padding: 48px 24px 28px;
	border-radius: 12px;
	background: #fff;
	padding: 30px;
	max-width: 600px;
	width: 100%;
}

@media(max-width:768px) {
	.modal__content {
		padding: 30px 15px;
	}
}

.js-close-modal {
	appearance: none;
	-webkit-appearance: none;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	color: #666;
	background: #f2f2f2;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}

.js-close-modal:hover {
	background: #e5e5e5;
	color: #333;
}

.js-close-modal:focus-visible {
	outline: 2px solid #00559d;
	outline-offset: 2px;
}

.wpcf7-spinner {
	display: none;
}

.p-index-kv__line {
	text-align: center;
	margin-bottom: 20px;
}

.p-index-kv__line a {
	text-align: center;
	color: #fff;
	background-color:  #368D21;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-inline: calc((100 * 20 / 1920) * 1vw);
	width: calc((100 * 480 / 1920) * 1vw);
	height: calc((100 * 80 / 1920) * 1vw);
	text-decoration: none;
	font-weight: bold;
	font-size: calc((100 * 24 / 1920) * 1vw);
}

.p-index-kv__line a img {
	width: calc((100 * 40 / 1920) * 1vw);
	min-width: 32px;
	margin-right: 8px;
}

@media screen and (max-width: 767px) {
	.p-index-kv__line {
		margin-bottom: 12px;
	}

	.p-index-kv__line a {
		width: 100%;
        font-size: 18px;
        height: 50px;
	}
}

.p-index-cta__line {
	text-align: center;
	margin-block-start: calc((100 * 60 / 1920) * 1vw);
}

.p-index-cta__line a {
	text-align: center;
	color: #fff;
	background-color: #368D21;
	border-radius: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-inline: calc((100 * 20 / 1920) * 1vw);
	width: calc((100 * 480 / 1920) * 1vw);
	height: calc((100 * 80 / 1920) * 1vw);
	text-decoration: none;
	font-weight: bold;
	font-size: calc((100 * 24 / 1920) * 1vw);
}

.p-index-cta__line a img {
	width: calc((100 * 40 / 1920) * 1vw);
	min-width: 32px;
	margin-right: 8px;
}

@media screen and (max-width: 767px) {
	.p-index-cta__line {
		margin-block-start: 30px;
	}

	.p-index-cta__line a {
		width: 100%;
        font-size: 18px;
        height: 50px;
	}
}

.p-index__column {
	background-color: #00559d;
	padding-block: calc((100 * 100 / 1920) * 1vw) calc((100 * 120 / 1920) * 1vw);
}

@media screen and (max-width: 767px) {
    .p-index__column {
        padding-block: 50px 60px;
    }
}


.p-index__column-title {
	color: #fff;
	margin: 0;
}

.p-index__column .column-item{
	background-color: #fff;
	
}

.p-index__column-btn {
	margin-top: 40px;
}

.p-company__container {
	padding-bottom: 100px;
}

/* 1. LINEボタンのみ、光をはみ出させない設定 */
.p-index-kv__line a,
.p-index-cta__line a {
  position: relative !important;
  overflow: hidden !important;
}

/* 2. キラッと光るエフェクト（LINEボタン限定） */
.p-index-kv__line a::before,
.p-index-cta__line a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  
  /* テキストの配置を崩さないための設定 */
  display: block !important;
  pointer-events: none;
  z-index: 10;
}

/* 3. アニメーションの動き */
@keyframes shine {
  0% { left: -100%; }
  30% { left: 100%; }
  100% { left: 100%; }
}

/* 1. LINE以外のボタンに、光をはみ出させない設定を追加 */
.p-index-kv__btn,
.p-index-cta__btn {
  position: relative !important;
  overflow: hidden !important;
}

/* 2. キラッと光るエフェクト（既存の::beforeを避けて ::after を使用） */
.p-index-kv__btn::after,
.p-index-cta__btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  
  /* テキストの配置を崩さないための設定 */
  display: block !important;
  pointer-events: none;
  z-index: 10;
}

/* 3. アニメーションの動き（LINE用と共通なので、すでに定義済みの場合は不要です） */
@keyframes shine {
  0% { left: -100%; }
  30% { left: 100%; }
  100% { left: 100%; }
}

/* 1. ヘッダーボタンに、光をはみ出させない設定を追加 */
.l-header__cta {
  position: relative !important;
  overflow: hidden !important;
}

/* 2. キラッと光るエフェクト（::afterを使用し、既存の配置に干渉させない） */
.l-header__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
  
  /* テキストの配置を崩さないための設定 */
  display: block !important;
  pointer-events: none;
  z-index: 10;
}

/* ※@keyframes shine は共通のものがすでに記述されていれば不要です。
   まだ書いていない場合のみ、以下を追加してください。 */
@keyframes shine {
  0% { left: -100%; }
  30% { left: 100%; }
  100% { left: 100%; }
}

/* よくある質問 */
/* 全体のリセットとベース設定 */
.faq-wrapper {
	max-width: 960px;
	margin: 0 auto;
	font-family: sans-serif;
	line-height: 1.6;
	color: #333;
	padding: 30px 20px 50px;
	font-size: 16px;
}

@media screen and (max-width: 767px) {
    .faq-wrapper {
        font-size: 14px;
    }
}

/* カテゴリ見出し */
.faq-category {
	margin-top: 40px;
	margin-bottom: 15px;
	font-size: 20px;
	color: #1a365d;
	border-bottom: 2px solid #1a365d;
	padding-bottom: 8px;
	font-weight: bold;
}

.faq-title {
	text-align: center;
    font-size: calc((100 * 42 / 1920) * 1vw);
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .faq-title {
        font-size: 19px;
    }
}

/* アコーディオン本体（details） */
.faq-item {
	margin-bottom: 12px;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	background-color: #fff;
	transition: background-color 0.3s ease;
}

/* アコーディオンの質問部分（summary） */
.faq-question {
	display: flex;
	align-items: center;
	padding: 16px 50px 16px 20px;
	font-weight: bold;
	cursor: pointer;
	list-style: none;
	position: relative;
	color: #2d3748;
	background-color: #f8fafc;
	transition: background-color 0.2s, border-bottom 0.2s;
}

/* Safari用の三角形非表示 */
.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question:hover {
	background-color: #f1f5f9;
}

/* Qのアイコン */
.faq-question::before {
	content: "Q.";
	color: #3182ce;
	font-size: 20px;
	margin-right: 12px;
	font-weight: 900;
}

/* 新しい開閉アイコン（＋/－）のコンテナ */
.faq-icon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
}

/* 横線（常に表示） */
.faq-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
	height: 2px;
	background-color: #a0aec0;
	transition: background-color 0.3s ease;
}

/* 縦線（開くと90度回転して横線に重なる） */
.faq-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2px;
	height: 14px;
	background-color: #a0aec0;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

/* ▼▼▼ ここから is-open クラスでの制御に変更（クリック直後に反応させるため） ▼▼▼ */

/* 開いた状態のスタイル */
.faq-item.is-open .faq-question {
	border-bottom: 1px dashed #cbd5e1;
	background-color: #ebf8ff;
}

/* 開いた状態のアイコンの色変更 */
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
	background-color: #3182ce;
}

/* 開いた状態：縦線を90度回転させて横線にする */
.faq-item.is-open .faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

/* アコーディオンの回答部分 */
.faq-answer {
	overflow: hidden;
	box-sizing: border-box;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	background-color: #fff;
}

/* Aのアイコン */
.faq-answer::before {
	content: "A.";
	color: #e53e3e;
	font-size: 20px;
	font-weight: 900;
	margin-right: 12px;
}

.faq-answer-text {
	margin: 0;
	padding-top: 2px;
}
/* よくある質問ここまで */