@charset "utf-8";

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
header {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	/* height: 17.6rem; */
	height: 11.6rem;
	z-index: 1000;
	@media screen and (max-width: 767px) {
		height: 7.4rem;
	}
	.header-inner {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		max-width: 192rem;
		height: 100%;
		margin: 0 auto;
		padding: 0 3rem;
		@media screen and (max-width: 767px) {
			padding: 0 1.5rem;
		}
		.header-logo {
			position: relative;
			padding-bottom: 2rem;
			z-index: 9999;
			@media screen and (max-width: 767px) {
				padding-bottom: 0;
			}
			& a {
				display: block;
				width: 23.9rem;
				@media screen and (max-width: 767px) {
					width: 11.15rem;
				}
			}
			& img {
				width: 100%;
				height: auto;
			}
		}
		.header-nav {
			@media screen and (max-width: 767px) {
				top: 0;
				padding-top: 13.6rem;
				height: 100vh;
				overflow-y: scroll;
			}
			& ul {
				display: flex;
				gap: 2.8rem;
				align-items: center;
				@media screen and (max-width: 767px) {
					flex-direction: column;
					gap: 4.7rem;
				}
			}
			& li {
				list-style: none;
			}
			& a {
				color: var(--header-text-color);
				font-size: 1.8rem;
				font-weight: 700;
				letter-spacing: 0.162rem;
				line-height: 3rem;
				text-decoration: none;
				white-space: nowrap;
				transition: opacity 0.3s ease;
				@media screen and (max-width: 767px) {
					font-size: 1.6rem;
					letter-spacing: 0.09em;
					font-weight: 500;
				}
			}
			@media (hover: hover) and (pointer: fine) {
				& a:hover {
					opacity: 0.7;
				}
			}
		}
		.left-contents {
			display: flex;
			align-items: center;
			gap: 2.7rem;
			.example-button {
				font-size: 2rem !important;
				width: 24rem;
				height: 6.4rem;
				background-color: #fff;
				font-family: "Noto Sans JP", sans-serif;
				font-style: normal;
				font-weight: 700;
				font-size: 2rem;
				line-height: 3.4rem;
				letter-spacing: 0.02em;
				color: #0013e4;
				text-align: left;
				justify-content: flex-start;
				padding-left: 7.75rem;
				position: relative;
				@media screen and (max-width: 767px) {
					display: none;
				}
				&:before {
					content: "";
					position: absolute;
					top: 50%;
					left: 4.05rem;
					transform: translateY(-50%);
					width: 2.7rem;
					height: 2rem;
					background: url("common/img/header/mail-box.png") no-repeat center / contain;
				}
			}
			.header-google {
				flex-shrink: 0;
				@media screen and (max-width: 767px) {
					display: none;
				}
				& img {
					width: 7.7rem;
					height: auto;
					@media screen and (max-width: 767px) {
						width: 8rem;
					}
				}
			}
		}
	}
}

.business-tel {
	@media screen and (max-width: 767px) {
		display: none;
	}
	.business-number {
		display: flex;
		align-items: baseline;
		gap: 0.6rem;
		font-family: "Jost", sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 2.1rem;
		line-height: 1;
		text-align: right;
		letter-spacing: 0.09em;
		color: #ffffff;
		margin-bottom: 0;
		& span {
			font-family: "Jost", sans-serif;
			font-style: normal;
			font-weight: 500;
			font-size: 3.6rem;
			line-height: 1;
			letter-spacing: 0.03em;
			color: #ffffff;
		}
	}
	.business-hours {
		font-family: "Noto Sans JP", sans-serif;
		font-style: normal;
		font-weight: 700;
		font-size: 1.6rem;
		line-height: 3rem;
		text-align: right;
		letter-spacing: 0.06em;
		color: #ffffff;
	}
}

.menu-btn {
	position: absolute;
	display: none;
	top: 1.6rem;
	right: 1.6rem;
	z-index: 9999;
	background: #fff;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 0.7rem;
	@media screen and (max-width: 767px) {
		display: flex;
		align-items: center;
	}

	&:after {
		/* content: "MENU"; */
		content: "";
		position: absolute;
		left: 50%;
		bottom: 1.1rem;
		color: #0013e4;
		font-weight: 500;
		letter-spacing: 0.05em;
		font-size: 1.1rem;
		transform: translateX(-50%);
		white-space: nowrap;
	}

	& a {
		position: relative;
		width: 10rem;
		height: 10rem;
		vertical-align: top;
		transition: ease 0.25s all;

		@media screen and (max-width: 767px) {
			width: 4.4rem;
			height: 4.4rem;
			border-radius: 0.7rem;
			box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.25);
		}

		& span {
			position: absolute;
			left: 50%;
			top: 50%;
			display: block;
			margin-left: -1.8rem;
			width: 1.8rem;
			height: 0.4rem;
			background: #0013e4;
			border-radius: 0.3rem;

			@media screen and (max-width: 767px) {
				margin-left: -1rem;
				width: 2rem;
				height: 0.4rem;
			}

			&:before,
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				background: #0013e4;
				border-radius: 0.3rem;
				transition: ease 0.25s all;
			}

			&:before {
				margin-top: -0.8rem;
			}
			@media screen and (max-width: 767px) {
				&:before {
					margin-top: -0.8rem;
				}
			}
			&:after {
				margin-top: 0.8rem;
			}
			@media screen and (max-width: 767px) {
				&:after {
					margin-top: 0.8rem;
				}
			}
		}
	}
}

@media screen and (max-width: 767px) {
	.nav {
		background-color: #0013e4;
		position: fixed;
		left: 100%;
		z-index: 999;
		width: 100%;
		pointer-events: none;
	}
}

.menu-active {
	#header {
		.menu-btn {
			/* position: fixed; */
			& a {
				background-color: #fff;
				& span {
					background-color: transparent;
					&:before {
						margin-top: -0.1rem;
						width: 2.2rem;
						transform: rotate(45deg);
						-webkit-transform: rotate(45deg);
					}
					&:after {
						margin-top: -0.1rem;
						width: 2.2rem;
						transform: rotate(-45deg);
						-webkit-transform: rotate(-45deg);
					}
				}
			}
		}

		@media screen and (max-width: 767px) {
			.nav {
				left: 0;
				pointer-events: auto;
			}
		}
	}
}

.scroll-now {
	header {
		height: 11.6rem;
		background-color: #0013e4;
		@media screen and (max-width: 767px) {
			height: 6.8rem;
		}
		.header-logo {
			padding-bottom: 1rem;
		}
		.header-google {
			& img {
				width: 10.2rem;
			}
		}
		.menu-btn {
			top: 1.2rem;
		}
	}
}

.menu-active {
	#header {
		height: 6.8rem !important;
	}
	.header-logo {
		padding-bottom: 1rem;
	}
	.menu-btn {
		top: 1.2rem;
	}
}

/* --------------------------------------------------------------- */
/* fv */
/* --------------------------------------------------------------- */

#main-banner {
	width: 100%;
	background-color: #e9f3ff;
	position: relative;
	&:after {
		content: "";
		position: absolute;
		width: 27.3rem;
		height: 33rem;
		background: url("img/fv-cat.png") no-repeat center / 100% auto;
		right: 57.2rem;
		bottom: 11.3rem;
		z-index: 3;
		@media screen and (max-width: 1080px) {
			width: 22.9rem;
			height: 27.6rem;
			right: 50rem;
			bottom: 10rem;
		}
		@media screen and (max-width: 767px) {
			background: url("img/fv-cat.png") no-repeat center / 100% auto;
			width: 9.6rem;
			height: 11.6rem;
			left: 3rem;
			bottom: -2rem;
		}
	}
	& img {
		width: 100%;
		height: auto;
	}
	#fv-swiper {
		position: absolute;
		right: 0;
		top: 27.7rem;
		z-index: 1;
		@media screen and (max-width: 1080px) {
			top: 22rem;
		}
		@media screen and (max-width: 767px) {
			top: 35rem;
			right: unset;
			left: 2rem;
		}

		.swiper-wrapper {
			width: 84rem;
			@media screen and (max-width: 1080px) {
				width: 71rem;
			}
			@media screen and (max-width: 767px) {
				width: 100%;
			}
		}
	}

	.swiper-wrapper {
		align-items: center;
	}

	.swiper-slide {
		flex-shrink: 0;
		width: 80%;
		transform: scale(0.7);
		transform-origin: center left;
		transition: transform 0.8s ease;
		@media screen and (max-width: 767px) {
			width: 94%;
		}
	}

	.swiper-slide.swiper-slide-active {
		transform: scale(1);
		transition: transform 0.8s ease, opacity 0.8s ease;
	}

	.swiper-slide.swiper-slide-next {
		opacity: 0.5;
		transition: opacity 0.8s ease;
		opacity: 0;
	}

	.swiper-button-next {
		right: 10%;
		top: 40%;
		width: 15%;
		height: 15%;
	}

	@media screen and (max-width: 767px) {
		.swiper-button-next {
			height: 22%;
		}
	}

	.swiper-button-next::after {
		display: none;
	}
}

/* --------------------------------------------------------------- */
/* talk */
/* --------------------------------------------------------------- */
#talk {
	padding: 10rem 0 0;
	background-color: #e9f3ff;
	@media screen and (max-width: 767px) {
		padding: 9rem 0 0;
	}
	.talk-title {
		width: 87.7rem;
		margin: 0 auto 7.2rem;
		@media screen and (max-width: 767px) {
			margin-bottom: 4rem;
			width: 24.7rem;
		}
		& img {
			width: 100%;
			height: auto;
		}
	}
	.talk-contents {
		width: 134.8rem;
		margin: 0 auto;
		@media screen and (max-width: 767px) {
			width: 100%;
			margin: -12rem auto 0;
		}
		& img {
			width: 100%;
			height: auto;
		}
	}
}

/* --------------------------------------------------------------- */
/* talk-under */
/* --------------------------------------------------------------- */
#talk-under {
	padding: 0 0 12rem;
	background-color: #e9f3ff;
	position: relative;
	@media screen and (max-width: 767px) {
		padding: 0 0 6rem;
	}
	&::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 5rem;
		width: 192.7rem;
		height: 101.3rem;
		background: url("img/talk-under-bg.png") no-repeat center / contain;
		@media screen and (max-width: 767px) {
			background: url("img/talk-under-bg-sp.png") no-repeat center / contain;
			width: 100%;
			height: 32.2rem;
			left: 0;
			bottom: 5rem;
		}
	}
	.talk-under-inner {
		position: relative;
		z-index: 1;
	}
	&:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 16.8rem;
		background: url("img/talk-under-bottom.png") no-repeat top center / cover;
		@media screen and (max-width: 767px) {
			background: url("img/talk-under-bottom-sp.png") no-repeat top center / cover;
			height: 8rem;
		}
	}
	.talk-under-character {
		width: 38.9rem;
		text-align: center;
		margin: 0 auto 1.7rem;
		@media screen and (max-width: 767px) {
			margin: 0 auto 4rem;
			width: 23rem;
			padding-left: 2rem;
		}
		& img {
			width: 100%;
			vertical-align: top;
		}
	}
	.talk-under-box {
		background-color: #ffffff;
		border-radius: 3rem;
		padding: 5rem 6rem;
		box-shadow: 0px 13px 13px rgba(112, 141, 174, 0.29);
		width: 108rem;
		box-sizing: border-box;
		margin: 0 auto 6rem;
		position: relative;
		@media screen and (max-width: 767px) {
			width: 100%;
			padding: 2.9rem 1.95rem 2.5rem;
			border-radius: 1.25rem;
			margin-bottom: 2.7rem;
		}
		&:before {
			content: "";
			position: absolute;
			top: -6rem;
			left: 50%;
			transform: translateX(-50%);
			width: 8.1rem;
			height: 8.1rem;
			z-index: -2;
			background: url("img/talk-under-box-arrow.png") no-repeat center / contain;
			@media screen and (max-width: 767px) {
				width: 3.2rem;
				height: 3.2rem;
				top: -2.6rem;
			}
		}

		.talk-under-title {
			font-family: "Noto Sans JP", sans-serif;
			font-style: normal;
			font-weight: 900;
			font-size: 5.5rem;
			line-height: 6.6rem;
			text-align: center;
			letter-spacing: 0.06em;
			color: #242425;
			margin-bottom: 5.1rem;
			position: relative;
			z-index: 1;
			/* text-shadow: 0px 1.453px 0.145px rgb(255, 249, 65, 1); */
			@media screen and (max-width: 767px) {
				font-size: 2.4rem;
				margin: 0 auto 1.55rem;
				display: table;
				line-height: 3.6rem;
			}
			&:before {
				content: "";
				position: absolute;
				bottom: -0.6rem;
				left: 50%;
				transform: translateX(-50%);
				width: 58.65rem;
				height: 2.5rem;
				background-color: #fff941;
				z-index: -1;
				@media screen and (max-width: 767px) {
					width: 100%;
					height: 1rem;
					bottom: -0.2rem;
				}
			}
		}
		.talk-under-text {
			font-size: 2.2rem;
			font-weight: 700;
			color: var(--talk-under-text-black);
			text-align: center;
			line-height: 3.6rem;
			letter-spacing: 0.132rem;
			margin-bottom: 3rem;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
				line-height: 2.2rem;
				margin-bottom: 2rem;
			}
		}
		.talk-under-highlight {
			color: var(--talk-highlight-color);
			font-size: 2.4rem;
			letter-spacing: 0.144rem;
			font-weight: 900;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
			}
		}
		.talk-under-subtitle {
			font-size: 2.8rem;
			font-weight: 900;
			color: var(--talk-under-text-black);
			text-align: center;
			letter-spacing: 0.14rem;
			@media screen and (max-width: 767px) {
				font-size: 1.6rem;
			}
		}
	}
	.talk-under-arrow {
		width: 11.1rem;
		text-align: center;
		margin: 0 auto 3.5rem;
		@media screen and (max-width: 767px) {
			width: 6.809rem;
			margin-bottom: 1.6rem;
		}
		& img {
			width: 100%;
			vertical-align: top;
		}
	}
	.talk-under-solution {
		text-align: center;
	}
	.talk-under-solution-title {
		font-style: normal;
		font-weight: 900;
		font-size: 5.34519rem;
		line-height: 7.9rem;
		text-align: center;
		letter-spacing: 0.09em;
		color: #000000;
		margin-bottom: 0.6rem;
		@media screen and (max-width: 767px) {
			font-size: 2.2rem;
			line-height: 1.75;
			margin-bottom: 0;
		}
	}
	.talk-under-solution-main {
		position: relative;
		.talk-under-solution-text {
			color: var(--talk-under-text-black);
			display: inline-flex;
			flex-wrap: wrap;
			align-items: center;
			justify-content: center;
			gap: 2rem;
			border-bottom: 0.629rem solid #000000;
			padding-bottom: 2rem;
			flex: 1;
			margin-bottom: 22rem;
			@media screen and (max-width: 767px) {
				font-size: 3rem;
				gap: 0.05rem;
				border-bottom-width: 0.3rem;
				padding-bottom: 1rem;
				display: table;
				margin: 0 auto 9rem;
			}
			& span {
				font-style: normal;
				font-weight: 900;
				font-size: 7.33654rem;
				line-height: 10.9rem;
				text-align: center;
				letter-spacing: 0.02em;
				color: #000000;
				@media screen and (max-width: 767px) {
					font-size: 3rem;
					line-height: 1.4;
				}
			}
		}
	}
}

.talk-under-x {
	font-size: 6.498rem;
	letter-spacing: 0.13rem;
	@media screen and (max-width: 767px) {
		font-size: 2.6rem;
		margin: 0 0.5rem;
	}
}

.talk-under-badge {
	position: absolute;
	width: 23.2rem;
	right: 2rem;
	bottom: 37rem;
	@media screen and (max-width: 767px) {
		width: 11rem;
		right: -0.8rem;
		bottom: 13rem;
	}
	& img {
		width: 100%;
		vertical-align: top;
	}
}

.talk-under-badge-top {
	font-size: 3.222rem;
	font-weight: 900;
	color: var(--talk-under-text-black);
	letter-spacing: -0.999rem;
	line-height: 4.985rem;
	text-shadow: 0px 1.453px 0.145px rgba(0, 0, 0, 1);
	margin-bottom: 0.5rem;

	@media screen and (max-width: 767px) {
		font-size: 2rem;
		line-height: 3rem;
	}
}

.talk-under-badge-bottom {
	font-size: 3.952rem;
	font-weight: 900;
	color: var(--talk-under-text-black);
	letter-spacing: -0.198rem;
	line-height: 4.338rem;
	text-shadow: 0px 1.453px 0.145px rgba(0, 0, 0, 1);
	text-align: center;

	@media screen and (max-width: 767px) {
		font-size: 2.4rem;
		line-height: 3rem;
	}
}

/* --------------------------------------------------------------- */
/* solution */
/* --------------------------------------------------------------- */
#solution {
	background-color: var(--solution-bg-blue);
	padding: 3rem 0 12rem;
	position: relative;
	overflow: hidden;

	@media screen and (max-width: 767px) {
		padding: 0 0 6.4rem;
	}

	&::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 12rem;
		background: var(--solution-bg-blue);
		clip-path: ellipse(100% 100% at 50% 0%);

		@media screen and (max-width: 767px) {
			height: 6rem;
		}
	}
}

.solution-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.solution-title {
	font-size: 5.4rem;
	font-weight: 900;
	color: var(--solution-text-white);
	letter-spacing: 0.486rem;
	margin-bottom: 4rem;
	@media screen and (max-width: 767px) {
		font-size: 2.6rem;
		margin-bottom: 3rem;
		white-space: nowrap;
		letter-spacing: 0.09em;
	}
}

.solution-badge {
	display: inline-block;
	background-color: var(--solution-badge-yellow);
	padding: 1.5rem 4rem;
	border-radius: 3.7rem;
	margin-bottom: 3rem;
	position: relative;

	@media screen and (max-width: 767px) {
		padding: 1rem 3rem;
		border-radius: 2rem;
		margin-bottom: 2rem;
	}

	&::after {
		content: "";
		position: absolute;
		bottom: -1.8rem;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 2rem 1.5rem 0 1.5rem;
		border-color: var(--solution-badge-yellow) transparent transparent transparent;
		@media screen and (max-width: 767px) {
			border-width: 1.5rem 0.9rem 0 0.9rem;
			bottom: -1.2rem;
		}
	}

	& p {
		font-size: 2.8rem;
		font-weight: 700;
		color: var(--solution-badge-blue);
		letter-spacing: 0.252rem;

		@media screen and (max-width: 767px) {
			font-size: 1.5rem;
		}
	}
}

.solution-description {
	font-size: 4rem;
	font-weight: 900;
	color: var(--solution-text-white);
	line-height: 5.5rem;
	letter-spacing: 0.36rem;
	margin-bottom: 3.3rem;
	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
		letter-spacing: 0.09em;
		line-height: 2.54rem;
		margin-bottom: 2.5rem;
	}
}

.solution-image {
	position: relative;
	max-width: 90rem;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		max-width: 100%;
	}

	& img {
		width: 100%;
		height: auto;
		border-radius: 2rem;

		@media screen and (max-width: 767px) {
			border-radius: 1rem;
		}
	}
}

.solution-image-text {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);

	@media screen and (max-width: 767px) {
		bottom: 2rem;
	}

	& p {
		font-size: 4.852rem;
		font-weight: 900;
		color: var(--solution-badge-blue);
		letter-spacing: -0.243rem;
		line-height: 6.04rem;
		text-align: center;
		text-shadow: 0px 1.453px 0.145px rgba(0, 0, 0, 1);

		@media screen and (max-width: 767px) {
			font-size: 2.4rem;
			line-height: 3.2rem;
		}
	}
}

/* --------------------------------------------------------------- */
/* success */
/* --------------------------------------------------------------- */

#success {
	position: relative;
	background: url("img/success-bg.png") no-repeat center / cover;
	padding: 10rem 0 30rem;
	overflow: hidden;

	@media screen and (max-width: 767px) {
		padding: 5rem 0 5rem;
	}
}

.success-inner {
	position: relative;
	z-index: 1;
}

.success-title {
	font-size: 5.6rem;
	font-weight: 900;
	color: var(--success-title-black);
	text-align: center;
	letter-spacing: 0.112rem;
	line-height: 1.4;
	margin-bottom: 8rem;

	@media screen and (max-width: 767px) {
		font-size: 2.6rem;
		margin-bottom: 8.5rem;
	}
}

.success-card {
	position: relative;
	background-color: var(--success-card-bg);
	border-radius: 3rem;
	box-shadow: 0px 0px 36px 6px rgba(112, 141, 174, 0.24);
	margin-bottom: 9rem;
	padding: 7.5rem 14.4rem 8rem;
	@media screen and (max-width: 767px) {
		border-radius: 2rem;
		margin-bottom: 8.9rem;
		padding: 4rem 2rem;
	}
}

.success-card-icon {
	position: absolute;
	left: -5.8rem;
	top: -5rem;
	text-align: center;
	width: 20.2rem;
	height: 20.2rem;
	border-radius: 50%;
	background: #0013e4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	@media screen and (max-width: 767px) {
		left: 50%;
		transform: translateX(-50%);
		top: -6rem;
		width: 12.4rem;
		height: 12.4rem;
	}
	.success-icon-circle {
		font-size: 3.4rem;
		font-weight: 700;
		color: #ffffff;
		letter-spacing: 0.05em;
		margin-bottom: 1rem;
		@media screen and (max-width: 767px) {
			font-size: 2.368rem;
			text-align: center;
		}
	}
	.success-icon-text {
		font-size: 1.6rem;
		font-weight: 400;
		color: #fff;
		letter-spacing: 0.08rem;
		text-align: center;
		@media screen and (max-width: 767px) {
			font-size: 1.114rem;
		}
	}
}

.success-card-content {
	@media screen and (max-width: 767px) {
		padding-top: 5rem;
	}
}

.success-card-title {
	font-size: 3.4rem;
	font-weight: 900;
	color: var(--success-title-black);
	letter-spacing: 0.204rem;
	line-height: 1.4;
	margin-bottom: 6.9rem;
	text-align: center;
	@media screen and (max-width: 767px) {
		font-size: 2.2rem;
		margin-bottom: 2.8rem;
		letter-spacing: 0.06em;
	}
}

.success-roles {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	margin-bottom: 6rem;
	@media screen and (max-width: 767px) {
		gap: 6.8rem;
		margin-bottom: 4rem;
	}
	.success-role {
		display: flex;
		align-items: center;
		background-color: #eeeeee;
		border-radius: 0.8rem;
		position: relative;
		@media screen and (max-width: 767px) {
			flex-direction: column;
			align-items: stretch;
		}
		&:after {
			content: "";
			position: absolute;
			left: 50%;
			transform: translateX(-50%);
			bottom: -3.6rem;
			width: 2.5rem;
			height: 2.5rem;
			background: url("img/triangle.png") no-repeat center / 100% auto;
		}
		&:last-child:after {
			display: none;
		}
		.success-role-label {
			background-color: var(--success-purple-blue);
			color: #ffffff;
			font-size: 2.2rem;
			font-weight: 900;
			display: flex;
			align-items: center;
			justify-content: center;
			min-width: 28.3rem;
			text-align: center;
			height: 9rem;
			border-radius: 0.8rem 0 0 0.8rem;
			@media screen and (max-width: 767px) {
				font-size: 1.7rem;
				letter-spacing: 0.02em;
				padding: 1.5rem 1.2rem;
				min-width: auto;
				height: 5rem;
				border-radius: 0.8rem 0.8rem 0 0;
			}
		}
		.success-role-text {
			flex: 1;
			width: 100%;
			font-size: 2rem;
			font-weight: 700;
			color: #000000;
			letter-spacing: 0.06em;
			height: 9rem;
			display: flex;
			align-items: center;
			padding-left: 4rem;
			border-radius: 0 0.8rem 0.8rem 0;
			background-color: #f5f5f5;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
				padding: 1.15rem 1.2rem;
				min-height: 7.3rem;
				border-radius: 0 0 0.8rem 0.8rem;
				text-align: center;
				letter-spacing: 0.01em;
				width: 100%;
				justify-content: center;
			}
		}
		.success-badge {
			background-color: #fff;
			font-size: 1.6rem;
			font-weight: 700;
			color: var(--success-purple-blue);
			letter-spacing: 0.064rem;
			line-height: 1.25;
			text-align: center;
			position: absolute;
			right: -5.1rem;
			top: -2.4rem;
			border: #5d64b8 2px solid;
			border-radius: 60%;
			width: 14.9rem;
			height: 8.1rem;
			display: flex;
			align-items: center;
			justify-content: center;
			@media screen and (max-width: 767px) {
				font-size: 1.289rem;
				padding: 2rem 1.5rem;
				border-radius: 0.5rem;
				width: auto;
				height: auto;
				padding: 0.55rem 1rem;
				box-sizing: border-box;
				right: unset;
				left: 50%;
				transform: translateX(-50%);
				white-space: nowrap;
				& br {
					display: none;
				}
			}
		}
	}
}

/* スタッフセクション */
.success-staff-section {
	margin-bottom: 6rem;

	@media screen and (max-width: 767px) {
		margin-bottom: 4rem;
	}
}

.success-section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 4rem;

	@media screen and (max-width: 767px) {
		gap: 1rem;
		margin-bottom: 3rem;
	}
}

.success-divider-line {
	flex: 1;
	height: 0.3rem;
	background-color: var(--success-title-black);
	max-width: 4.65rem;
	@media screen and (max-width: 767px) {
		max-width: 3rem;
	}
}

.success-divider-text {
	font-size: 2.7rem;
	font-weight: 900;
	color: var(--success-title-black);
	letter-spacing: 0.162rem;

	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
	}
}

.success-staff-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;

	@media screen and (max-width: 767px) {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

.success-staff {
	display: flex;
	flex-direction: column;
	align-items: center;
	.bubble-text {
		width: 21.6rem;
		margin-bottom: 1.8rem;
		@media screen and (max-width: 767px) {
			width: 100%;
			margin-bottom: 0.7rem;
		}
		& img {
			width: 100%;
			vertical-align: top;
		}
	}
	.bubble-text-sp {
		@media screen and (max-width: 767px) {
			width: 25.3rem;
		}
	}
}

.success-staff-image {
	width: 21.5rem;
	height: 21.5rem;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 2.5rem;
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
	background-color: #fdeedb;
	@media screen and (max-width: 767px) {
		width: 13rem;
		height: 13rem;
		margin-bottom: 0;
	}
	& img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.staff-text-container {
	flex: 1;
}

.success-staff-bubble {
	background-color: #eeeeee;
	border-radius: 2rem;
	padding: 2rem 2.5rem;
	font-size: 1.6rem;
	font-weight: 700;
	color: #000000;
	letter-spacing: 0.064rem;
	line-height: 1.375;
	margin-bottom: 2rem;
	position: relative;
	text-align: center;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		padding: 1.5rem 2rem;
		margin-bottom: 1.5rem;
	}
}

.success-staff-role {
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--success-text-black);
	letter-spacing: 0.04em;
	line-height: 2.4rem;
	text-align: center;
	margin-bottom: 2.5rem;
	white-space: nowrap;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		text-align: left;
		letter-spacing: 0.03em;
		margin-bottom: 1.6rem;
	}
}

.success-staff-name {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--success-text-black);
	letter-spacing: 0.088rem;
	margin: 0 auto 1rem;
	display: table;

	@media screen and (max-width: 767px) {
		font-size: 2rem;
		margin-bottom: 0.8rem;
		text-align: left;
		display: block;
	}
}

.flex-staff {
	@media screen and (max-width: 767px) {
		display: flex;

		gap: 1.7rem;
	}
}

/* コメントセクション */
.success-comment {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.3rem;
	margin: 0 auto;
	@media screen and (max-width: 767px) {
		gap: 0;
		align-items: flex-start;
		justify-content: space-between;
	}
	.success-comment-character {
		flex-shrink: 0;
		width: 11.6rem;
		@media screen and (max-width: 767px) {
			width: 8rem;
			height: auto;
		}
		& img {
			width: 100%;
			height: auto;
		}
	}
	.success-comment-bubble {
		background-color: var(--success-yellow-bg);
		border-radius: 3.7rem;
		font-size: 2rem;
		font-weight: 700;
		color: #000000;
		letter-spacing: 0.04rem;
		line-height: 1.7;
		position: relative;
		width: 66.9rem;
		height: 7.6rem;
		display: flex;
		justify-content: center;
		align-items: center;
		@media screen and (max-width: 767px) {
			width: 20rem;
			font-size: 1.376rem;
			height: auto;
			padding: 1.7rem;
			border-radius: 2rem;
		}
		&::before {
			content: "";
			position: absolute;
			left: -1.4rem;
			top: 50%;
			transform: translateY(-50%) rotate(90deg);
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 2rem 1rem 0 1rem;
			border-color: var(--success-yellow-bg) transparent transparent transparent;

			@media screen and (max-width: 767px) {
				top: 3.7rem;
				transform: rotate(90deg);
			}
		}
	}
}

/* 広告タイプ */
.success-ad-types {
	margin-bottom: 6.2rem;
	display: flex;
	justify-content: center;
	gap: 2rem;
	@media screen and (max-width: 767px) {
		margin-bottom: 4.7rem;
		flex-direction: column;
		align-items: center;
	}
	.ad-type1,
	.ad-type3 {
		width: 25.5rem;
		@media screen and (max-width: 767px) {
			margin: 0 auto;
			display: contents;
		}
	}
	.ad-type2 {
		width: 53rem;
		@media screen and (max-width: 767px) {
			width: 25.5rem;
			margin: 0 auto;
			display: contents;
		}
	}
}

/* クリエイティブグリッド */
.success-creative-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 6rem;
	@media screen and (max-width: 767px) {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.105rem;
		margin-bottom: 3rem;
	}
	.success-creative-item {
		background: radial-gradient(70.35% 70.35% at 50% 50%, #5d64b8 0%, #9299ed 100%);
		border-radius: 1rem;
		font-size: 1.8rem;
		font-weight: 700;
		color: #ffffff;
		letter-spacing: 0.108rem;
		line-height: 2.5rem;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 8.6rem;
		width: 100%;
		@media screen and (max-width: 767px) {
			font-size: 1.4rem;
			/* padding: 1.17rem 1rem; */
			width: 100%;
			height: 4.752rem;
			border-radius: 0.553rem;
			line-height: 1.5rem;
		}
	}
}

/* ポートフォリオエリア */
#fv-swiper2 {
	width: 68.2rem !important;
	margin: 0 auto;
	@media screen and (max-width: 767px) {
		width: 23.2rem !important;
	}
	& img {
		width: 100%;
		vertical-align: middle;
	}
}

/* CTA */
.success-cta {
	text-align: center;
	.success-cta-button {
		display: inline-block;
		background-color: var(--success-button-blue);
		color: #ffffff;
		font-size: 2.4rem;
		font-weight: 700;
		letter-spacing: 0.048rem;
		line-height: 1.417;
		/* padding: 1rem 5rem; */
		border-radius: 4.8rem;
		box-shadow: 0px 5px 2px 0px rgba(0, 0, 0, 0.25);
		text-decoration: none;
		transition: all 0.3s ease-in-out;
		width: 45rem;
		height: 8.4rem;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
			padding: 1rem 3rem;
			border-radius: 3rem;
			width: 29.5rem;
			height: 4.9rem;
			box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.15);
		}
		&:hover {
			opacity: 0.8;
			box-shadow: none;
		}
	}
}

/* --------------------------------------------------------------- */
/* example */
/* --------------------------------------------------------------- */
#example {
	position: relative;
	background: url("img/example-bg.png") no-repeat center center / contain;
	padding: 16rem 0;
	overflow: hidden;
	margin-top: -15.6rem;
	z-index: 3;

	@media screen and (max-width: 767px) {
		margin-top: -10rem;
		padding: 7rem 0;
		background: url("img/example-bg-sp.png") no-repeat center center / contain;
	}
}

.example-inner {
	position: relative;
	z-index: 1;
	text-align: center;
}

.example-title {
	font-size: 4.2rem;
	font-weight: 700;
	color: var(--example-title-black);
	text-align: center;
	letter-spacing: 0.21rem;
	line-height: 1.4;
	margin-bottom: 2rem;

	@media screen and (max-width: 767px) {
		font-size: 2.4rem;
		margin-bottom: 1.5rem;
	}
}

.example-subtitle {
	font-size: 2rem;
	font-weight: 600;
	color: var(--example-subtitle-black);
	text-align: center;
	letter-spacing: 0.18rem;
	line-height: 1.45;
	margin-bottom: 6rem;

	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
		margin-bottom: 3.7rem;
	}
}

.example-logos {
	width: 182rem;
	margin: 0 auto 5.7rem;
	@media screen and (max-width: 767px) {
		width: 33.3rem;
		margin: 0 auto 3.2rem;
	}
	& img {
		width: 100%;
		vertical-align: middle;
	}
}

.example-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4.5rem;

	@media screen and (max-width: 767px) {
		flex-direction: column;
		gap: 2rem;
	}
}

.example-button {
	color: #ffffff;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.048rem;
	line-height: 1.417;
	border-radius: 4.8rem;
	box-shadow: 0px 5px 2px 0px rgba(0, 0, 0, 0.25);
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	width: 45rem;
	height: 8.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
		padding: 1rem 3rem;
		border-radius: 3rem;
		width: 29.5rem;
		height: 4.9rem;
		box-shadow: 0px 3px 2px 0px rgba(0, 0, 0, 0.15);
	}
	&:hover {
		opacity: 0.8;
		box-shadow: none;
	}
}

.example-button-purple {
	background-color: var(--example-button-purple);
}

.example-button-blue {
	background-color: var(--example-button-blue);
}

/* --------------------------------------------------------------- */
/* plan */
/* --------------------------------------------------------------- */
#plan {
	background-color: #e9f2ff;
	padding: 26rem 0 32.1rem;
	position: relative;
	z-index: 1;
	margin-top: -15rem;
	@media screen and (max-width: 767px) {
		padding: 12rem 0 18rem;
		margin-top: -9rem;
	}
	&:after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 21rem;
		background: url("img/plan-btm-bg.png") no-repeat top center / cover;
		@media screen and (max-width: 767px) {
			background: url(img/talk-under-bottom-sp.png) no-repeat top center / cover;
			height: 8rem;
		}
	}
	.plan-inner {
		position: relative;
		.plan-title {
			font-size: 5.4rem;
			font-weight: 900;
			color: var(--plan-title-black);
			text-align: center;
			letter-spacing: 0.108rem;
			margin-bottom: 8rem;
			@media screen and (max-width: 767px) {
				font-size: 2.6rem;
				margin-bottom: 4rem;
			}
		}
		.plan-sub-text {
			width: 52rem;
			margin: 0 auto 3.2rem;
			@media screen and (max-width: 767px) {
				width: 33.3rem;
				margin: 0 auto 2.3rem;
			}
			& img {
				width: 100%;
				vertical-align: middle;
			}
		}
	}
	.plan-card {
		border-radius: 3.1rem;
		box-shadow: 0px 0px 36px 6px rgba(112, 141, 174, 0.24);
		margin-bottom: 10rem;
		@media screen and (max-width: 767px) {
			border-radius: 0 0 2rem 2rem;
			margin-bottom: 6rem;
			border-radius: 3rem;
			overflow: hidden;
		}
		&:last-child {
			margin-bottom: 0;
		}
		.plan-card-header {
			border-radius: 3.1rem 3.1rem 0 0;
			/* padding: 3rem 0; */
			height: 10.9rem;
			display: flex;
			justify-content: center;
			align-items: center;

			@media screen and (max-width: 767px) {
				border-radius: 2rem 2rem 0 0;
				padding: 2.4rem 0;
				height: 8.9rem;
			}
		}
	}
}

.plan-card-blue .plan-card-header {
	background: #0013e4;
	position: relative;
	&:after {
		content: "";
		position: absolute;
		bottom: -2.4rem;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-left: 2rem solid transparent;
		border-right: 2rem solid transparent;
		border-top: 3.1rem solid #0013e4;
		@media screen and (max-width: 767px) {
			bottom: -1.4rem;
		}
	}
}

.plan-card-purple .plan-card-header {
	background: #3e26ba;
	position: relative;
	&:after {
		content: "";
		position: absolute;
		bottom: -2.4rem;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-left: 2rem solid transparent;
		border-right: 2rem solid transparent;
		border-top: 3.1rem solid #3e26ba;
		@media screen and (max-width: 767px) {
			bottom: -1.4rem;
		}
	}
}

.plan-card-cyan .plan-card-header {
	background: #0092d6;
	position: relative;
	&:after {
		content: "";
		position: absolute;
		bottom: -2.4rem;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 0;
		border-left: 2rem solid transparent;
		border-right: 2rem solid transparent;
		border-top: 3.1rem solid #0092d6;
		@media screen and (max-width: 767px) {
			bottom: -1.4rem;
		}
	}
}

.plan-card-title {
	font-size: 4rem;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	letter-spacing: 0.08rem;
	@media screen and (max-width: 767px) {
		font-size: 2.4rem;
		line-height: 1;
	}
}

.plan-card-catchcopy {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	padding: 2rem 3rem;

	@media screen and (max-width: 767px) {
		padding: 1.5rem 2rem;
		gap: 0.8rem;
	}
}

.plan-catchcopy-icon,
.plan-catchcopy-icon-reverse {
	font-size: 2.4rem;
	font-weight: 700;
	flex-shrink: 0;

	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
	}
}

.plan-card-blue .plan-catchcopy-icon,
.plan-card-blue .plan-catchcopy-icon-reverse {
	color: var(--plan-blue);
}

.plan-card-purple .plan-catchcopy-icon,
.plan-card-purple .plan-catchcopy-icon-reverse {
	color: var(--plan-purple);
}

.plan-card-cyan .plan-catchcopy-icon,
.plan-card-cyan .plan-catchcopy-icon-reverse {
	color: var(--plan-cyan);
}

.plan-catchcopy-text {
	font-size: 2.7rem;
	font-weight: 700;
	text-align: center;

	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
	}
}

.plan-card-blue .plan-catchcopy-text {
	color: var(--plan-blue);
}

.plan-card-purple .plan-catchcopy-text {
	color: var(--plan-purple);
}

.plan-card-cyan .plan-catchcopy-text {
	color: var(--plan-cyan);
}

.plan-card-content {
	padding: 6rem 6.6rem;
	background-color: #ffffff;
	border-radius: 0 0 3rem 3rem;
	@media screen and (max-width: 767px) {
		padding: 4rem 2rem;
	}
}

.plan-services-title {
	display: flex;
	justify-content: center;
	font-size: 3.5184rem;
	font-weight: 700;
	color: var(--plan-title-black);
	text-align: center;
	letter-spacing: 0.0704rem;
	margin-bottom: 4rem;
	@media screen and (max-width: 767px) {
		font-size: 2rem;
		margin-bottom: 3rem;
		flex-direction: column;
		white-space: nowrap;
		align-items: center;
		letter-spacing: 0.02em;
		line-height: 1.4;
	}
	& span {
		letter-spacing: 0.02em;
	}
}

.plan-services-lp {
	display: inline-block;
	position: relative;
}

.plan-services-sub {
	font-size: 2.0184rem;
	letter-spacing: 0.0404rem;
	margin-top: 0.5rem;

	@media screen and (max-width: 767px) {
		font-size: 1.2rem;
		margin-top: 0.3rem;
		letter-spacing: 0.02em;
		line-height: 1.4;
	}
}

.plan-price-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.7rem 5.4rem 2.7rem 5.4rem;
	box-sizing: border-box;
	background-color: #f3f3f3;
	width: 100rem;
	margin: 0 auto 4.6rem;
	border-radius: 1.1rem;
	@media screen and (max-width: 767px) {
		padding: 2rem 1.7rem;
		width: 100%;
		flex-direction: column;
		margin-bottom: 2.8rem;
	}
	.plan-price-initial {
		display: flex;
		align-items: center;
		padding-right: 4.3rem;
		border-right: dotted 3px #bababa;
		height: 10rem;
		@media screen and (max-width: 767px) {
			border-right: none;
			border-bottom: dotted 3px #bababa;
			padding-right: 0;
			height: auto;
			padding: 0 0 2rem;
		}
	}
	.plan-initial-note {
		font-size: 2.0938rem;
		font-weight: 700;
		color: var(--plan-text-black);
		letter-spacing: 0.08375rem;
		display: flex;
		align-items: center;
		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
			letter-spacing: 0.04em;
			white-space: nowrap;
		}
		& span {
			margin-left: 1rem;
			margin-right: 1rem;
		}
	}
	.plan-initial-price {
		font-family: "Roboto", sans-serif;
		font-size: 5.1351rem;
		font-weight: 700;
		color: var(--plan-pink);
		letter-spacing: 0.03em;
		text-align: right;
		margin-bottom: 0.5rem;
		margin-left: 0.3rem;
		@media screen and (max-width: 767px) {
			font-size: 3.6rem;
			white-space: nowrap;
		}
	}
	.plan-initial-unit {
		font-size: 2.0938rem;
		margin-left: 0.45rem;
		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
			margin-left: 0;
			margin-left: 0.2rem;
		}
	}
}

.plan-price-single {
	justify-content: center;
	.plan-price-main {
		padding-left: 0;
		.plan-price-number {
			text-align: center;
		}
	}
}

/* .plan-initial-label {
	font-size: 2.0938rem;
	font-weight: 700;
	color: var(--plan-text-black);
	letter-spacing: 0.08375rem;
	margin-bottom: 0.5rem;

	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
	}
} */

.plan-price-main {
	flex: 1;
	width: 100%;
	padding-left: 8.5rem;
	@media screen and (max-width: 767px) {
		padding-left: 0;
		padding-top: 1.5rem;
	}
	.plan-price-number {
		font-family: "Roboto", sans-serif;
		font-size: 7.6rem;
		font-weight: 700;
		letter-spacing: -0.228rem;
		text-align: left;
		margin-bottom: 1rem;
		@media screen and (max-width: 767px) {
			font-size: 5rem;
			text-align: center;
		}
		.plan-price-unit {
			font-family: "Noto Sans JP", sans-serif;
			font-size: 3.2rem;
			color: #000;
			letter-spacing: 0.02em;
			font-weight: 900;
			margin-left: 0.6rem;
			@media screen and (max-width: 767px) {
				font-size: 2.1rem;
			}
		}
	}
	.plan-price-note {
		font-size: 1.4rem;
		font-weight: 700;
		color: var(--plan-text-black);
		letter-spacing: 0.126rem;
		text-align: center;

		@media screen and (max-width: 767px) {
			font-size: 1.2rem;
		}
	}
}

.plan-card-blue .plan-price-number {
	color: var(--plan-blue);
}

.plan-card-purple .plan-price-number {
	color: var(--plan-purple);
}

.plan-card-cyan .plan-price-number {
	color: var(--plan-cyan);
}

.plan-services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin-bottom: 3.9rem;
	border-radius: 1.1rem;

	@media screen and (max-width: 767px) {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 0;
		margin-bottom: 2.8rem;
	}
}

.plan-service-box {
	background-color: #ffffff;
	border: 0.2rem solid;
	border-radius: 1.1rem;
	padding: 3rem 3.8rem 2.2rem;
	@media screen and (max-width: 767px) {
		padding: 1.65rem 2.1rem;
	}
	.title-flex {
		display: flex;
		align-items: center;
		gap: 1.2rem;
		margin-bottom: 2rem;
		@media screen and (max-width: 767px) {
			align-items: center;
			margin-bottom: 1.2rem;
			gap: 1rem;
		}
		.plan-service-name {
			font-size: 2.4rem;
			font-weight: 700;
			letter-spacing: 0.216rem;
			@media screen and (max-width: 767px) {
				font-size: 1.6rem;
			}
		}
	}
	.plan-service-desc {
		font-size: 1.8rem;
		font-weight: 500;
		color: var(--plan-text-black);
		letter-spacing: 0.072rem;
		line-height: 1.5;

		@media screen and (max-width: 767px) {
			font-size: 1.2rem;
		}
	}
}

.plan-service-blue {
	border-color: var(--plan-blue);
}

.plan-service-purple {
	border-color: var(--plan-purple);
}

.plan-service-cyan {
	border-color: var(--plan-cyan);
}

.plan-service-blue .plan-service-name {
	color: var(--plan-blue);
}

.plan-service-purple .plan-service-name {
	color: var(--plan-purple);
}

.plan-service-cyan .plan-service-name {
	color: var(--plan-cyan);
}

.plan-notes {
	list-style: none;

	& li {
		font-size: 1.6rem;
		font-weight: 500;
		color: var(--plan-text-black);
		letter-spacing: 0.064rem;
		line-height: 1.5;
		margin-bottom: 0.5rem;
		padding-left: 2rem;
		position: relative;

		@media screen and (max-width: 767px) {
			font-size: 1.2rem;
			padding-left: 1.8rem;
		}

		&::before {
			content: "・";
			position: absolute;
			left: 0;
			font-weight: 500;
			letter-spacing: 0.144rem;
		}
	}
}

.plan-2-text {
	width: 81.8rem;
	margin: 0 auto 3.2rem;
	@media screen and (max-width: 767px) {
		width: 29.44rem;
		margin: 0 auto 2.3rem;
	}
	& img {
		width: 100%;
		vertical-align: top;
	}
}

.plan-3-text {
	width: 82.6rem;
	margin: 0 auto 3.2rem;
	@media screen and (max-width: 767px) {
		width: 29.44rem;
		margin: 0 auto 2.3rem;
	}
	& img {
		width: 100%;
		vertical-align: top;
	}
}

.price-img {
	width: 100%;
	& img {
		width: 100%;
		vertical-align: top;
	}
}

.plan-service-icon {
	transform: scale(0.95);
	@media screen and (max-width: 767px) {
		transform: scale(0.65);
	}
}

/* --------------------------------------------------------------- */
/* option */
/* --------------------------------------------------------------- */

#option {
	position: relative;
	z-index: 2;
	margin-top: -0.5rem;
	background-color: var(--option-bg-blue);
	padding: 1rem 0 12rem;
	/* overflow: hidden; */
	@media screen and (max-width: 767px) {
		padding: 2rem 0 8rem;
		margin-top: -0.2rem;
	}
}

.option-inner {
	position: relative;
	z-index: 1;
}

.option-title {
	font-size: 5.4rem;
	font-weight: 900;
	color: #ffffff;
	text-align: center;
	letter-spacing: 0.108rem;
	margin-bottom: 3.5rem;
	@media screen and (max-width: 767px) {
		font-size: 2.8rem;
		margin-bottom: 1.5rem;
	}
}

.option-subtitle {
	font-size: 2rem;
	font-weight: 600;
	color: #ffffff;
	text-align: center;
	letter-spacing: 0.18rem;
	margin-bottom: 9.2rem;
	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
		margin-bottom: 4.4rem;
	}
}

.option-card {
	position: relative;
	background-color: var(--option-card-bg);
	border: 0.2rem solid var(--option-bg-blue);
	border-radius: 3.1rem;
	padding: 7.8rem 8rem;
	box-sizing: border-box;
	margin-bottom: 6rem;
	@media screen and (max-width: 767px) {
		border-radius: 2rem;
		padding: 4rem 3rem 3rem;
		margin-bottom: 4rem;
	}
	&:last-child {
		margin-bottom: 0;
	}
}

.option-card-adjust {
}

.option-card-accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0.8rem;
	background-color: var(--option-accent-yellow);
	border-radius: 3.1rem 0 0 3.1rem;

	@media screen and (max-width: 767px) {
		width: 0.6rem;
		border-radius: 2rem 0 0 2rem;
	}
}

.option-card-title {
	font-size: 3.2rem;
	font-weight: 900;
	color: var(--option-accent-yellow);
	letter-spacing: 0.128rem;
	margin-bottom: 3.2rem;
	padding-left: 2.9rem;
	position: relative;
	@media screen and (max-width: 767px) {
		font-size: 2rem;
		margin-bottom: 2.5rem;
		padding-left: 2rem;
	}

	&::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0.1rem;
		width: 1rem;
		height: 3rem;
		background-color: var(--option-accent-yellow);
		@media screen and (max-width: 767px) {
			width: 0.638rem;
			height: 1.914rem;
		}
	}
}

/* 広告プラットフォーム */
.option-ad-platforms {
	margin-bottom: 4rem;

	@media screen and (max-width: 767px) {
		margin-bottom: 3rem;
	}
}

.option-ad-row1 {
	width: 68.4rem;
	margin: 0 auto 2.8rem;
	@media screen and (max-width: 767px) {
		width: 100%;
		margin: 0 auto 4rem;
	}
	& img {
		width: 100%;
		vertical-align: top;
	}
}

.option-ad-row2 {
	width: 66.6rem;
	margin: 0 auto 4.9rem;
	& img {
		width: 100%;
		vertical-align: top;
	}
}

.option-ad-item {
	text-align: center;
}

.option-ad-icons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	min-height: 6rem;

	@media screen and (max-width: 767px) {
		gap: 0.8rem;
		margin-bottom: 1rem;
		min-height: 4rem;
	}

	& img {
		max-width: 5rem;
		max-height: 5rem;
		width: auto;
		height: auto;
		object-fit: contain;

		@media screen and (max-width: 767px) {
			max-width: 3.5rem;
			max-height: 3.5rem;
		}
	}
}

.option-ad-name {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--option-text-black);
	letter-spacing: 0.064rem;

	@media screen and (max-width: 767px) {
		font-size: 1.3rem;
	}
}

/* サービスリスト */
.option-services {
	margin-bottom: 4rem;
	@media screen and (max-width: 767px) {
		margin-bottom: 0;
	}
	.option-service-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 2rem 0;
		border-bottom: 0.1rem solid #cccccc;
		@media screen and (max-width: 767px) {
			padding: 0 0 1rem;
			flex-direction: column;
			align-items: flex-start;
			gap: 0;
			border-bottom: none;
		}
		.option-service-name {
			font-size: 2rem;
			font-weight: 700;
			color: var(--option-text-black);
			letter-spacing: 0.08rem;
			@media screen and (max-width: 767px) {
				padding: 1.2rem 1rem;
				font-size: 1.32rem;
				width: 100%;
				background-color: #e9f2ff;
				font-weight: 900;
			}
		}
		.option-service-price {
			font-size: 2rem;
			font-weight: 500;
			color: var(--option-text-black);
			letter-spacing: 0.08rem;
			text-align: right;
			white-space: nowrap;
			@media screen and (max-width: 767px) {
				font-size: 1.32rem;
				padding: 1.4rem 1rem;
			}
		}
	}
}

.option-notes {
	list-style: none;
	& li {
		font-size: 1.6rem;
		font-weight: 400;
		color: var(--option-text-black);
		letter-spacing: 0.064rem;
		line-height: 1.5;
		margin-bottom: 0.5rem;
		padding-left: 2rem;
		position: relative;
		@media screen and (max-width: 767px) {
			font-size: 1.2rem;
			padding-left: 1.8rem;
		}
		&::before {
			content: "・";
			position: absolute;
			left: 0;
			font-weight: 500;
			letter-spacing: 0.144rem;
		}
	}
}

/* --------------------------------------------------------------- */
/* contact */
/* --------------------------------------------------------------- */

#contact {
	position: relative;
	background: url("img/contact.png") no-repeat center / cover;
	padding: 10rem 0;
	overflow: hidden;
	@media screen and (max-width: 767px) {
		padding: 6rem 0 7rem;
	}
	.contact-inner {
		position: relative;
		z-index: 1;
		.contact-title {
			font-size: 5.4rem;
			font-weight: 900;
			color: #ffffff;
			text-align: center;
			letter-spacing: 0.108rem;
			margin-bottom: 6rem;
			@media screen and (max-width: 767px) {
				font-size: 2.8rem;
				margin-bottom: 4.9rem;
				text-align: center;
			}
		}
		.contact-cards {
			display: flex;
			flex-direction: column;
			gap: 4rem;
			margin-bottom: 6rem;

			@media screen and (max-width: 767px) {
				gap: 3rem;
				margin-bottom: 0;
			}
			.contact-card {
				height: 28.8rem;
				position: relative;
				background-color: var(--contact-card-bg);
				border-radius: 2.5rem;
				box-shadow: 0px 0px 18.2px 7px rgba(28, 82, 145, 0.34);
				padding: 4rem;
				display: flex;
				align-items: center;
				gap: 3rem;
				opacity: 0.92;
				@media screen and (max-width: 767px) {
					border-radius: 1.5rem;
					padding: 4rem 3rem;
					gap: 2rem;
					flex-direction: column;
					align-items: flex-start;
					height: auto;
				}
				.contact-card-icon {
					flex-shrink: 0;
					width: 10.9rem;
					height: 10.9rem;
					border-radius: 50%;
					display: flex;
					align-items: center;
					justify-content: center;
					@media screen and (max-width: 767px) {
						width: 6.833rem;
						height: 6.833rem;
						& img {
							transform: scale(0.65);
						}
					}
				}
				.contact-card-content {
					flex: 1;
					.contact-card-title {
						font-size: 3rem;
						font-weight: 700;
						letter-spacing: 0.24rem;
						margin-bottom: 1.5rem;
						@media screen and (max-width: 767px) {
							font-size: 2.2rem;
							line-height: 2.7rem;
							margin-bottom: 0;
							position: absolute;
							top: 5rem;
							left: 11.4rem;
						}
					}
				}
				.contact-card-arrow {
					flex-shrink: 0;
					width: 3rem;
					@media screen and (max-width: 767px) {
						width: 1.2rem;
						position: absolute;
						top: 6.3rem;
						right: 3.1rem;
					}
					& img {
						width: 100%;
						height: auto;
					}
				}
				.contact-card-text {
					font-size: 1.8rem;
					font-weight: 400;
					color: var(--contact-text-black);
					letter-spacing: 0.072rem;
					line-height: 1.556;
					@media screen and (max-width: 767px) {
						font-size: 1.6rem;
						margin-bottom: 3.4rem;
					}
				}
			}
		}
	}
}

.contact-card-mail .contact-card-icon {
	background-color: var(--contact-button-blue);
}

.contact-card-download .contact-card-icon {
	background-color: var(--contact-button-purple);
}

.contact-card-mail .contact-card-title {
	color: var(--contact-button-blue);
}

.contact-card-download .contact-card-title {
	color: var(--contact-button-purple);
}

.contact-card-download .contact-card-text {
	margin-bottom: 0 !important;
}

.contact-tel {
	display: flex;
	gap: 1.4rem;
	margin-top: 3.4rem;
	@media screen and (max-width: 767px) {
		flex-direction: column;
	}
	.contact-tel-title {
		font-size: 1.8rem;
		font-weight: 700;
		color: var(--contact-text-black);
		letter-spacing: 0.072rem;
		margin-bottom: 1rem;
		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
			margin-bottom: 0;
		}
	}
	.contact-tel-number {
		font-size: 1.8rem;
		font-weight: 400;
		color: var(--contact-text-black);
		letter-spacing: 0.072rem;
		@media screen and (max-width: 767px) {
			font-size: 1.6rem;
			display: flex;
		}
		.contact-tel-hours {
			font-size: 1.6rem;
			margin-left: 0.5rem;
			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
				margin-left: 0;
				letter-spacing: 0;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* company */
/* --------------------------------------------------------------- */
#company {
	background-color: #e9f3ff;
	padding: 10.4rem 0 13.8rem;
	box-sizing: border-box;
	@media screen and (max-width: 767px) {
		padding: 6rem 0;
	}
	.company-inner {
		position: relative;
		.company-title {
			font-size: 5.4rem;
			font-weight: 900;
			color: var(--contact-text-black);
			text-align: center;
			letter-spacing: 0.108rem;
			margin-bottom: 6rem;
			@media screen and (max-width: 767px) {
				font-size: 2.8rem;
				margin-bottom: 4rem;
			}
		}
		.company-table-wrapper {
			background-color: var(--company-card-bg);
			border-radius: 3.1rem;
			box-shadow: 0px 6px 48px 3px rgba(112, 141, 174, 0.25);
			padding: 10.7rem 15rem;
			@media screen and (max-width: 767px) {
				border-radius: 2rem;
				padding: 4rem 3rem;
			}
			.company-table {
				width: 100%;
				border-collapse: collapse;
				& tr {
					&:last-child {
						border-bottom: none;
					}
				}
				& th {
					font-size: 1.8rem;
					font-weight: 700;
					color: var(--company-text-black);
					letter-spacing: 0.072rem;
					text-align: left;
					vertical-align: top;
					padding: 2rem 3rem 2rem 0;
					width: 16.7rem;
					@media screen and (max-width: 767px) {
						display: block;
						width: 100%;
						padding: 1.4rem 1rem;
						box-sizing: border-box;
						background-color: #e9f2ff;
						border-radius: 0.2rem;
						font-size: 1.32rem;
						width: 100%;
						font-weight: 900;
					}
				}
				& td {
					font-size: 1.8rem;
					font-weight: 500;
					color: var(--company-text-black);
					letter-spacing: 0.072rem;
					line-height: 1.5;
					padding: 2rem 0;
					width: calc(100% - 16.7rem);
					@media screen and (max-width: 767px) {
						display: block;
						width: 100%;
						font-size: 1.32rem;
						padding: 1.5rem 0;
						padding: 1.4rem 1rem;
						box-sizing: border-box;
					}
					& a {
						color: blue;
						text-decoration: underline;
					}
				}
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
footer {
	background-color: var(--footer-bg-dark);
	padding: 7.3rem 0 5.6rem;
	@media screen and (max-width: 767px) {
		padding: 5.2rem 0 5.5rem;
	}
	.inner {
		@media screen and (max-width: 767px) {
			width: calc(100% - 6rem);
		}
	}
	.footer-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 4rem;
		@media screen and (max-width: 767px) {
			flex-direction: column;
			gap: 2rem;
			margin-bottom: 3rem;
		}
		.logo-address {
			width: 35rem;
			@media screen and (max-width: 767px) {
				width: 100%;
			}
			.footer-logo {
				width: 21.8rem;
				margin-bottom: 4.2rem;
				@media screen and (max-width: 767px) {
					width: 16.7rem;
					margin-bottom: 2.4rem;
				}
				& img {
					width: 100%;
					vertical-align: middle;
				}
			}
			.footer-company-name {
				font-style: normal;
				font-weight: 700;
				font-size: 1.4rem;
				line-height: 183%;
				letter-spacing: 0.1em;
				color: #ffffff;
				@media screen and (max-width: 767px) {
					font-size: 1.2rem;
				}
			}
			.footer-address,
			.footer-contact {
				font-style: normal;
				font-weight: 500;
				font-size: 1.2rem;
				line-height: 183%;
				letter-spacing: 0.1em;
				color: #ffffff;
				@media screen and (max-width: 767px) {
					font-size: 1rem;
				}
			}
		}
		.f-links {
			width: 52rem;
			@media screen and (max-width: 767px) {
				width: 100%;
			}
			.footer-certifications {
				display: flex;
				align-items: center;
				justify-content: flex-end;
				gap: 0.7rem;
				margin-bottom: 5.4rem;
				@media screen and (max-width: 767px) {
					gap: 1.9rem;
					justify-content: flex-start;
					margin-bottom: 4.75rem;
				}
				.footer-cert-item1 {
					width: 15.2rem;
					@media screen and (max-width: 767px) {
						width: 8.6rem;
					}
					& img {
						width: 100%;
						vertical-align: middle;
					}
				}
				.footer-cert-item2 {
					width: 29.5rem;
					@media screen and (max-width: 767px) {
						width: 15.8rem;
					}
					& img {
						width: 100%;
						vertical-align: middle;
					}
				}
				.footer-cert-item1,
				.footer-cert-item2 {
					transition: ease 0.3s all;
					&:hover {
						opacity: 0.8;
					}
				}
			}
			.footer-social {
				display: flex;
				justify-content: flex-end;
				gap: 3rem;
				@media screen and (max-width: 767px) {
					justify-content: flex-start;
					flex-wrap: wrap;
					gap: 1.1rem 3rem;
					border-top: 1px solid #fff;
					border-bottom: 1px solid #fff;
					padding: 3rem 0;
					box-sizing: border-box;
				}
				& a {
					font-style: normal;
					font-weight: 500;
					font-size: 1.2rem;
					line-height: 1;
					letter-spacing: 0.1em;
					color: #ffffff;
					text-decoration: none;
					transition: ease 0.3s all;
					&:hover {
						opacity: 0.8;
					}
				}
			}
		}
	}
	.footer-divider {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 1.9rem;
		position: relative;
		&::before {
			content: "";
			width: 100%;
			height: 0.1rem;
			background-color: #ffffff;
			position: absolute;
			left: 0;
			top: 50%;
			transform: translateY(-50%);
		}
		.footer-familia-title {
			font-style: normal;
			font-weight: 700;
			font-size: 1.4rem;
			line-height: 1.7rem;
			letter-spacing: 0.1em;
			color: #ffffff;
			padding: 0 3.9rem;
			box-sizing: border-box;
			background-color: var(--footer-bg-dark);
			z-index: 2;
		}
	}
	.footer-familia-links {
		display: flex;
		justify-content: center;
		gap: 1.5rem;
		.footer-familia-link {
			width: 27.6rem;
			transition: ease 0.3s all;
			&:hover {
				opacity: 0.8;
			}
			& img {
				width: 100%;
				vertical-align: middle;
			}
		}
	}
	.footer-copyright {
		& p {
			font-style: normal;
			font-weight: 300;
			font-size: 1.2rem;
			line-height: 1.4rem;
			text-align: center;
			letter-spacing: 0.1em;
			color: #ffffff;
			margin-top: 2.3rem;
			@media screen and (max-width: 767px) {
				font-size: 1rem;
				line-height: 1rem;
				margin-top: 2rem;
			}
		}
	}
}
