@charset "utf-8";

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
header {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	/* height: 17.6rem; */
	height: 11.6rem;
	z-index: 1000;
	background-color: #fff;

	@media screen and (max-width: 767px) {
		height: 6.4rem;
		background: rgba(255, 255, 255, 0.27);
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(8px);
		border: 1px solid rgba(255, 255, 255, 0.43);
	}

	.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 0.9rem;
		}

		.header-logo {
			position: relative;
			z-index: 9999;

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

			& .logo {
				display: block;
				width: 44.9rem;

				@media screen and (max-width: 1080px) {
					width: 34rem;
				}

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

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

		.header-nav {
			@media screen and (max-width: 767px) {
				top: -0.3rem;
				padding-top: 13.6rem;
				height: 102vh;
				overflow-y: scroll;
			}

			& ul {
				display: flex;
				gap: 2.8rem;
				align-items: center;

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

				@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: #601DBF;
				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: #fff;
				text-align: left;
				justify-content: flex-start;
				padding-left: 7.75rem;
				position: relative;
				display: flex;
				align-items: center;
				border-radius: 3.7rem;
				box-shadow: 0px 0.5rem 0.2rem rgba(0, 0, 0, 0.25);

				@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.svg") 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: #000;
		margin-bottom: 0;

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

		& span {
			font-family: "Jost", sans-serif;
			font-style: normal;
			font-weight: 500;
			font-size: 3.6rem;
			line-height: 1;
			letter-spacing: 0.03em;
			color: #000;

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

	.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: #000;

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

.menu-btn {
	position: absolute;
	display: none;
	top: 0.6rem;
	right: 0.8rem;
	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);
			background-color: #601DBF;
		}

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

			@media screen and (max-width: 767px) {
				margin-left: -0.9rem;
				width: 1.8rem;
				height: 0.2rem;
			}

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

			&:before {
				margin-top: -0.6rem;
			}

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

			&:after {
				margin-top: 0.6rem;
			}

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

.menu-btn-telephone-sp {
	display: none;

	@media screen and (max-width: 767px) {
		display: block;
		background: url(./img/telephone-icon-sp.png) no-repeat center / contain;
		background-size: contain;
		width: 4.6rem;
		height: 4.6rem;
		position: absolute;
		top: 0.7rem;
		right: 6.1rem;
		z-index: 999;
	}
}

@media screen and (max-width: 767px) {
	.nav {
		background: linear-gradient(180deg, #761DF3 0%, #F31D53 100%);
		position: fixed;
		left: 101%;
		z-index: 999;
		width: 102%;
		pointer-events: none;
		transition: ease 0.25s all;
	}
}

.menu-active {
	#header {
		.menu-btn {

			/* position: fixed; */
			& a {
				background-color: #601DBF;

				& 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.2rem;
				pointer-events: auto;
			}
		}
	}
}

.scroll-now {
	header {
		.header-google {
			& img {
				width: 10.2rem;
			}
		}
	}
}


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

#main-banner {
	width: 100%;
	position: relative;

	@media screen and (min-width: 1920px) {
		max-width: 192rem;
		margin: 0 auto;
	}

	&:after {
		content: "";
		position: absolute;
		width: 25rem;
		height: 22.4rem;
		background: url(img/fv-cat.png) no-repeat center / 100% auto;
		right: 78.2rem;
		top: 23.3rem;
		z-index: 3;
	}

	&:before {
		content: "";
		position: absolute;
		width: 20.7rem;
		height: 5.8rem;
		background: url(./img/fv-top-cat.png) no-repeat center / 100% auto;
		right: 79.5rem;
		top: 16.3rem;
		z-index: 3;
	}

	& .top-fv {
		width: 100%;
		height: 91.7rem;

		@media screen and (max-width: 767px) {
			height: 70.7rem;
			clip-path: ellipse(116% 100% at top);
		}
	}

	& .fv-purple-text {
		position: absolute;
		top: 18.5rem;
		left: 23.1rem;
		width: 57.3rem;
		height: 12.5rem;

		@media screen and (max-width: 767px) {
			top: 8.8rem;
			left: 2.1rem;
			width: 22.7rem;
			height: 12.5rem;
		}
	}

	& .fv-paragraph {
		position: absolute;
		top: 31.4rem;
		left: 23.3rem;
		width: 66.8rem;
		height: 11.5rem;

		@media screen and (max-width: 767px) {
			top: 14.4rem;
			left: 2.3rem;
			width: 25rem;
			height: auto;
		}
	}

	& .fv-main-text {
		position: absolute;
		bottom: 35.9rem;
		left: 23rem;
		width: 83.1rem;
		height: 8.9rem;

		@media screen and (max-width: 767px) {
			bottom: 0;
			left: 2rem;
			width: 33.5rem;
			height: auto;
			top: 20.5rem;
		}
	}

	& .fv-three-box {
		position: absolute;
		bottom: 17.2rem;
		left: 22.7rem;
		width: 78.6rem;
		height: 16rem;

		@media screen and (max-width: 767px) {
			bottom: 0;
			left: 1.4rem;
			width: 34.9rem;
			height: auto;
			top: 24.9rem;
		}
	}

	& .fv-phone {
		position: absolute;
		bottom: 6.2rem;
		right: 25.2rem;
		width: 39.3rem;
		height: 65.2rem;

		@media screen and (min-width: 1921px) {
		}

		@media screen and (max-width: 1080px) {
			bottom: 7.2rem;
			right: 7.8rem;
			width: 33rem;
			height: 56.2rem;
		}

		@media screen and (max-width: 767px) {
			width: 18.4rem;
            height: auto;
            bottom: 0;
            top: 36.4rem;
            right: 9.4rem;
		}
	}

	& .fv-red-important {
		position: absolute;
		bottom: -1.3rem;
		right: 24.1rem;
		width: 144rem;
		height: 10.8rem;

		@media screen and (max-width: 1080px) {
			bottom: 0.7rem;
			right: 7.1rem;
		}

		@media screen and (max-width: 767px) {
			bottom: 0;
			right: 2rem;
			width: 33.5rem;
			top: 65.4rem;
		}
	}

	#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;
	}
}

@media screen and (max-width: 1080px) {
	#main-banner:before {
		right: 51.5rem;
		top: 16.3rem;
	}

	#main-banner:after {
		right: 51.2rem;
		width: 22rem;
		height: 20.4rem;
	}
}

@media screen and (max-width: 767px) {
	#main-banner:before {
		right: 1.3rem;
		top: 8.6rem;
		width: 9rem;
		background: url(./img/fv-top-cat-sp.png) no-repeat center / 100% auto;
		background-size: 100% 100%;
		height: 11rem;
	}

	#main-banner:after {
		display: none;
	}

	/* 
	#main-banner {
		background: linear-gradient(to bottom, #FDE5EC 50%, #FFFFFF 100%);
	} */
}



/* --------------------------------------------------------------- */
/* objectif */
/* --------------------------------------------------------------- */

#objectif {
	padding-top: 19rem;
	background: linear-gradient(to bottom, #FDE5EC 50%, #FFFFFF 100%);
	margin-top: -9rem;

	@media screen and (max-width: 767px) {
		margin-top: -10rem;
		padding-top: 20rem;
	}
}

.objectif-title {
	width: 78.8rem;
	height: 11.5rem;
	margin-bottom: 6.8rem;
	margin-left: auto;
	margin-right: auto;

	@media screen and (max-width: 767px) {
		width: 100%;
		height: auto;
		margin-bottom: 4.8rem;
	}
}

.objectif-box-container {
	width: 120rem;
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0px 0px 36px 6px rgba(112, 141, 174, 0.24);
	padding-top: 5.8rem;
	padding-left: 12.9rem;
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 5.2rem;
	row-gap: 1.6rem;
	margin-bottom: 6.2rem;

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

.objectif-box-element {
	display: flex;
	gap: 1.9rem;

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

.objectif-box-element .box-icon {
	width: 3.7rem;
	height: 3.5rem;

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

.objectif-box-element .box-paragraph {
	font-style: normal;
	font-weight: 700;
	font-size: 2.6rem;
	/* line-height: 54px; */
	letter-spacing: 0.15em;
	color: #2A2A2A;

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

.objectif-box-element .box-paragraph span {
	font-style: normal;
	font-weight: 700;
	font-size: 3.3rem;
	/* line-height: 54px; */
	/* letter-spacing: 0.07em; */
	color: #2A2A2A;
	position: relative;
	z-index: 2;

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

.objectif-box-element .box-paragraph span::before {
	content: "";
	position: absolute;
	background-color: #FFDEEB;
	width: 100%;
	height: 2.4rem;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}

.objectif-box-element1 {
	margin-right: 12.4rem;

	@media screen and (max-width: 767px) {
		margin-right: 0;
	}
}

.objectif-box-element3 {
	margin-right: 8.8rem;

	@media screen and (max-width: 767px) {
		margin-right: 0;
	}
}

.objectif-paragraph {
	max-width: 65.5rem;
	text-align: center;
	margin-left: auto;
	margin-right: auto;

	font-style: normal;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 4.1rem;
	letter-spacing: 0.03em;
	color: #2A2A2A;

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

.objectif-paragraph span {
	position: relative;
	z-index: 2;
}

.objectif-paragraph span::before {
	content: "";
	position: absolute;
	background-color: #FFDEEB;
	width: 100%;
	height: 2.4rem;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}


/* --------------------------------------------------------------- */
/* problems */
/* --------------------------------------------------------------- */

#problems {
	position: relative;
	padding-top: 10.7rem;
	padding-bottom: 35rem;
	background: linear-gradient(to bottom, #FBFBFB 14%, #EDEDED 45%);

	@media screen and (max-width: 767px) {
		padding-top: 8rem;
		padding-bottom: 19rem;
	}
}

#problems::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 1.8rem;
	margin: auto;
	background: url(./img/problems-bk.png) no-repeat center / cover;
	background-size: 100%;
	z-index: 6;
	width: 192rem;
	height: 34rem;
}

@media screen and (max-width: 1080px) {
	#problems::after {
		left: 0;
		right: 0rem;
		bottom: 1.8rem;
		margin: auto;
		background: url(./img/problems-bk.png) no-repeat;
		background-size: 100%;
		z-index: 6;
		width: 100%;
		height: 31rem;
		background-position: bottom;
	}
}

.problems-uptitle {
	font-style: normal;
	font-weight: 900;
	font-size: 3.3rem;
	line-height: 6.1rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #601DBF;

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

.problems-title {
	font-style: normal;
	font-weight: 900;
	font-size: 4.9rem;
	line-height: 6.8rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #242425;
	margin-bottom: 4.9rem;

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

.problems-exemples-img-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4rem;

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

.problem-img-container {
	width: 84rem;

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

.problems-down-img01 {
	position: absolute;
	bottom: -5.9rem;
	right: 45.7rem;
	margin: auto;
	width: 62.9rem;
	height: 30.2rem;
	z-index: 7;

	@media screen and (max-width: 1080px) {
		bottom: -4.9rem;
		right: 28.7rem;
		margin: auto;
		width: 60.9rem;
		height: 29.2rem;
	}

	@media screen and (max-width: 767px) {
		bottom: -7.9rem;
		right: 9.7rem;
		margin: auto;
		width: 22.3rem;
		height: auto;
	}
}

.problems-down-img02 {
	position: absolute;
	bottom: 4.2rem;
	left: 57.7rem;
	margin: auto;
	width: 28rem;
	height: 24.5rem;
	z-index: 7;

	@media screen and (max-width: 1080px) {
		bottom: 8.2rem;
		left: 45.7rem;
		margin: auto;
		width: 28rem;
		height: 22.5rem;
		z-index: 7;
	}

	@media screen and (max-width: 767px) {
		bottom: 6.2rem;
		left: 3.7rem;
		margin: auto;
		width: 13rem;
		height: 10.5rem;
	}
}


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

#success {
	position: relative;
	background: #FFF4F7;
	padding: 10rem 0 30rem;
	overflow: hidden;
	padding-top: 42rem;
	margin-top: -32.2rem;

	@media screen and (max-width: 767px) {
		padding: 20rem 0 10rem;
		margin-top: -9rem;
	}
}

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

.success-title {
	font-style: normal;
	font-weight: 900;
	font-size: 5.4rem;
	line-height: 7rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #242425;
	margin-bottom: 8.1rem;

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

.success-title span {
	position: relative;
}

.success-title span::before {
	content: "";
	position: absolute;
	background-color: #FFF584;
	width: 100%;
	height: 5.7rem;
	top: 1rem;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.success-title span::before {
		height: 3.4rem;
		top: 0.4rem;
		bottom: 0;
	}
}

.succes-card-container {
	max-width: 130rem;
	background-color: #FFFFFF;
	padding: 6.7rem 7rem 7.3rem;
	border-radius: 2rem;
	margin-bottom: 3rem;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	box-shadow: 0px 0px 2.7rem -1rem #9E7777;

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

.img-card-container {
	position: absolute;
	bottom: 6rem;
	right: 7.4rem;
	margin: auto;
	width: 19.5rem;
	height: auto;

	@media screen and (max-width: 767px) {
		position: static;
		width: 18.5rem;
	}
}

.img-card-container2 {
	bottom: 8.2rem;
	right: 6.4rem;
	margin: auto;
	width: 21.6rem;

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

.img-card-container3 {
	bottom: 8rem;
	right: 8.6rem;
	width: 17.5rem;

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

.img-card-container4 {
	bottom: 8rem;
	right: 5.5rem;
	width: 23.5rem;

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

.succes-card-content h3 {
	font-style: normal;
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 4.4rem;
	letter-spacing: 0.04em;
	color: #2A2A2A;
	position: relative;
	padding-left: 6rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #E3E3E3;
	margin-bottom: 3.2rem;

	@media screen and (max-width: 767px) {
		font-size: 2.2rem;
		padding-left: 5.5rem;
		padding-bottom: 2.5rem;
		margin-bottom: 2.7rem;
		line-height: 2.9rem;
	}
}

.succes-card-content h3 span {
	width: 5.8rem;
	display: inline-block;
	position: absolute;
	top: -0.6rem;
	left: -0.7rem;

	@media screen and (max-width: 767px) {
		width: 4.1rem;
		left: 0.4rem;
		top: -0.5rem;
	}
}

.succes-card-content h5 {
	font-style: normal;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 3.4rem;
	letter-spacing: 0.04em;
	color: #2A2A2A;
	margin-bottom: 0.8rem;
	max-width: 81.2rem;

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

.succes-card-content p {
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 3.1rem;
	letter-spacing: 0.04em;
	color: #000000;
	margin-bottom: 3rem;
	max-width: 90.6rem;

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

.succes-card-content h4 {
	font-style: normal;
	font-weight: 700;
	font-size: 3rem;
	line-height: 4.2rem;
	letter-spacing: 0.05em;
	color: #F81769;
	max-width: 71rem;
	position: relative;
	padding-left: 5rem;

	@media screen and (max-width: 767px) {
		font-size: 2rem;
		line-height: 2.6rem;
		padding-left: 3.7rem;
		margin-bottom: 1.4rem;
	}
}

.succes-card-content h4::before {
	content: "";
	position: absolute;
	top: 1rem;
	left: 0;
	width: 3.5rem;
	height: 3.2rem;
	background: url(./img/pink-arrow.svg) no-repeat center center / contain;
}

@media screen and (max-width: 767px) {
	.succes-card-content h4::before {
		top: 0.5rem;
		left: 0;
		width: 2.5rem;
		height: 2.2rem;
	}
}

/* --------------------------------------------------------------- */
/* SNS */
/* --------------------------------------------------------------- */
#sns {
	background: url("./img/sns-bg.png") no-repeat center center / cover;
	background-size: 100% 100%;
	padding-top: 11.7rem;
	padding-bottom: 13rem;
	margin-top: -24rem;
	z-index: 2;
	position: relative;
	clip-path: ellipse(230% 100% at bottom);

	@media screen and (max-width: 1080px) {
		background-size: cover;
	}

	@media screen and (max-width: 767px) {
		margin-top: -4rem;
		clip-path: ellipse(650% 100% at bottom);
		background-size: auto;
		padding-bottom: 6rem;
		background: url("./img/sns-bg-sp.png") no-repeat center center / cover;
		background-size: cover;
		padding-top: 5rem;
	}
}

.sns-main-up-title {
	font-style: normal;
	font-weight: 700;
	font-size: 2.7rem;
	line-height: 3.2rem;
	text-align: center;
	color: #601DBF;
	position: relative;
	margin-bottom: 1rem;

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

.sns-main-up-title::before {
	content: "";
	position: absolute;
	background: url(./img/sns-main-txt-deco.svg) no-repeat;
	width: 2.7rem;
	height: 3.2rem;
	left: 33rem;
	top: 0;
	bottom: 0;
	margin: auto;
}

.sns-main-up-title::after {
	content: "";
	position: absolute;
	background: url(./img/sns-main-txt-deco.svg) no-repeat;
	width: 2.7rem;
	height: 3.2rem;
	right: 33rem;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(80deg);
}

@media screen and (max-width: 767px) {
	.sns-main-up-title::before {
		left: 3.7rem;
		background-size: 100%;
		width: 2.5rem;
		height: 2.8rem;
		top: 1.1rem;
	}

	.sns-main-up-title::after {
		right: 3.7rem;
		background-size: 100%;
		width: 2.5rem;
		height: 2.8rem;
		top: 1.1rem;
	}
}

.sns-main-title {
	font-style: normal;
	font-weight: 900;
	font-size: 5.1rem;
	line-height: 8rem;
	text-align: center;
	letter-spacing: 0.08em;
	color: #2A2A2A;
	text-decoration: underline;
	text-underline-offset: 1.5rem;
	margin-bottom: 7rem;

	@media screen and (max-width: 767px) {
		font-size: 2.2rem;
		line-height: 3.5rem;
		text-underline-offset: 0.7rem;
	}
}

.sns-big-card {
	width: 100%;
	background-color: #FFFFFF;
	border-radius: 2rem;
	position: relative;
	padding: 7.8rem 0 6.4rem 10.7rem;
	margin-bottom: 6.8rem;
	z-index: 1;

	@media screen and (max-width: 767px) {
		padding: 4rem 2rem 31.4rem;
		margin-bottom: 3.8rem;
		overflow: hidden;
	}
}

.sns-phone-img-container {
	position: absolute;
	width: 39.6rem;
	height: 52.7rem;
	top: 3.1rem;
	right: 8rem;

	@media screen and (max-width: 767px) {
		width: 23.6rem;
		height: 31.4rem;
		top: 52.1rem;
		right: 6rem;
	}
}

.sns-big-card h4 {
	font-style: normal;
	font-weight: 700;
	font-size: 4.2rem;
	line-height: 7.5rem;
	letter-spacing: 0.06em;
	color: #242425;
	margin-bottom: 1.7rem;

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

.sns-big-card h5 {
	font-style: normal;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 3.9rem;
	letter-spacing: 0.08em;
	color: #601DBF;
	margin-bottom: 1.4rem;

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

.sns-big-card p {
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 3.3rem;
	letter-spacing: 0.04em;
	color: #2A2A2A;

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

.sns-big-card p span {
	position: relative;

	@media screen and (max-width: 767px) {
		background-color: #FFDEEB;
	}
}

.sns-big-card p span::before {
	content: "";
	position: absolute;
	background-color: #FFF584;
	width: 100%;
	height: 2.4rem;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.sns-big-card p span::before {
		display: none;
	}
}

.sns-sub-up-title {
	font-style: normal;
	font-weight: 900;
	font-size: 4rem;
	line-height: 7.5rem;
	text-align: center;
	letter-spacing: 0.06em;
	color: #2A2A2A;
	margin-bottom: 1.5rem;

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

.sns-sub-title {
	font-style: normal;
	font-weight: 500;
	font-size: 2rem;
	line-height: 3.3rem;
	text-align: center;
	letter-spacing: 0.04em;
	color: #2A2A2A;
	margin-bottom: 5.7rem;

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

.sns-min-card-flex-container {
	display: flex;
	gap: 5rem;
	row-gap: 4rem;
	flex-wrap: wrap;
	justify-content: center;
}

.sns-min-card {
	width: 62.5rem;

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

.min-card-top-purple {
	background-color: #601DBF;
	width: 100%;
	height: 9.8rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 2rem 2rem 0 0;
	font-style: normal;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 3.1rem;
	text-align: center;
	letter-spacing: 0.07em;
	color: #FFFFFF;

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

.min-card-white-container {
	border-radius: 0 0 2rem 2rem;
	background-color: #FFFFFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 42.2rem;
	width: 100%;

	@media screen and (max-width: 767px) {
		height: auto;
		padding-bottom: 4rem;
		padding-top: 2rem;
	}
}

.sns-min-box-img-container {
	width: 45.5rem;
	height: 12.6rem;
	margin-bottom: 1.9rem;

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

.min-card-white-container h3 {
	font-style: normal;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 3.3rem;
	text-align: center;
	color: #2A2A2A;
	margin-bottom: 2.7rem;

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

.min-card-white-container p {
	max-width: 48rem;
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 2.8rem;
	color: #2A2A2A;

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

/* --------------------------------------------------------------- */
/* plan */
/* --------------------------------------------------------------- */
#plan {
	background-color: #F8F8F8;
	padding: 29rem 0 20.8rem;
	position: relative;
	z-index: 1;
	margin-top: -15rem;

	@media screen and (max-width: 767px) {
		padding: 8rem 0 10rem;
		margin-top: 0;
	}


	.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: 7.6rem;

			@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: 4.5rem;

		@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: 1.1rem 1.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: 11.4rem;
			}
		}
	}
}

.plan-card-blue .plan-card-header {
	background: #F81769;
	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 #F81769;

		@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-title span {
	font-style: normal;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 3.1rem;
	text-align: center;
	color: #FFFFFF;
	position: relative;
	padding-right: 3.3rem;
	padding-left: 4.4rem;
	line-height: 1rem;

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

.plan-card-title span::before {
	content: "";
	position: absolute;
	background: url(./img/plan-main-deco.svg) no-repeat;
	width: 2.5rem;
	height: 3.1rem;
	left: 0rem;
	top: -1rem;
	bottom: 0;
	margin: auto;
	background-size: 100%;
}

.plan-card-title span::after {
	content: "";
	position: absolute;
	background: url(./img/plan-main-deco.svg) no-repeat;
	background-size: 100%;
	width: 2.5rem;
	height: 3.1rem;
	left: 33.7rem;
	top: -1rem;
	bottom: 0;
	margin: auto;
	transform: rotate(80deg);
}

@media screen and (max-width: 767px) {
	.plan-card-title span::before {
		background-size: 100%;
		width: 1.6rem;
		height: 1.9rem;
		top: 0.3rem;
		left: -0.3rem;
	}

	.plan-card-title span::after {
		background-size: 100%;
		width: 1.6rem;
		height: 1.9rem;
		top: 0.3rem;
		left: 23rem;
	}
}

.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 2rem;
	background-color: #ffffff;
	border-radius: 0 0 3rem 3rem;

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

.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 2.8rem;
	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-under-p {
	font-style: normal;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 3.2rem;
	text-align: center;
	letter-spacing: 0.09em;
	color: #2A2A2A;
	margin-bottom: 3.6rem;

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

.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%;

	@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;
		text-align: center;

		@media screen and (max-width: 767px) {
			font-size: 5rem;
			text-align: center;
			line-height: 2.2rem;
		}

		.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-card-blue .plan-price-number {
	color: #F81769;
}

.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;
	row-gap: 2rem;

	@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;
	height: 18.4rem;

	@media screen and (max-width: 767px) {
		padding: 1.65rem 2.1rem;
		height: 12.5rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.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: #F81769;
}

.plan-service-purple {
	border-color: #F81769;
}

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

.plan-service-blue .plan-service-name {
	color: #F81769;
}

.plan-service-purple .plan-service-name {
	color: #F81769;
}

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


.price-img {
	width: 100%;

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

.plan-service-icon {
	width: 2.8rem;
	height: 2.8rem;

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

.plan-service-icon2 {
	width: 3.1rem;
	height: 2.4rem;

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

.plan-service-icon3 {
	width: 2.5rem;
	height: 1.9rem;

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

.plan-service-icon4 {
	width: 2.2rem;
	height: 2.7rem;

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

.plan-second-title {
	font-style: normal;
	font-weight: 900;
	font-size: 4rem;
	line-height: 7.5rem;
	text-align: center;
	letter-spacing: 0.06em;
	color: #2A2A2A;
	margin-bottom: 1rem;

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

.plan-table-container {
	margin-top: 2rem;
	width: 100%;
	overflow-x: auto;

	& table {
		width: 100%;
		border-collapse: separate;
		border-spacing: 0;
		min-width: 80rem;
	}

	& th {
		font-style: normal;
		font-weight: 700;
		font-size: 1.6rem;
		line-height: 1.5;
		text-align: center;
		letter-spacing: 0.05em;
		color: #2A2A2A;
		padding: 1.5rem 1rem;
		background-color: transparent;
		vertical-align: middle;
	}

	& tbody tr:first-child {
		/* Sofcom Row */
		filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));

		& td {
			background-color: #FEFDF0;
			border-top: 0.4rem solid #F81769;
			border-bottom: 0.4rem solid #F81769;
			color: #2A2A2A;
			vertical-align: middle;
			padding: 2rem 1rem;
			text-align: center;
			font-weight: 700;

			&:first-child {
				background-color: #F81769;
				color: #fff;
				font-size: 2.2rem;
				border-left: 0.4rem solid #F81769;
				border-radius: 1rem 0 0 1rem;
				width: 18rem;
			}

			&:nth-child(2) {
				color: #F81769;
				font-size: 2.8rem;
				font-family: "Jost", sans-serif;
			}

			&:nth-child(5) {
				color: #F81769;
				font-size: 1.6rem;
				line-height: 1.4;
			}

			&:nth-child(3),
			&:nth-child(4),
			&:nth-child(6) {
				color: #F81769;
				font-size: 3rem;
				line-height: 1;
			}

			&:last-child {
				border-right: 0.4rem solid #F81769;
				border-radius: 0 1rem 1rem 0;
			}

			/* Dividers between cream cells */
			&:not(:first-child):not(:last-child) {
				border-right: 0.1rem solid #E8E8E8;
			}
		}
	}

	& tbody tr:not(:first-child) {

		/* Competitor Rows */
		& td {
			background-color: #fff;
			border-bottom: 0.1rem solid #DDDDDD;
			border-right: 0.1rem solid #DDDDDD;
			color: #2A2A2A;
			vertical-align: middle;
			padding: 2rem 1rem;
			text-align: center;
			font-size: 1.6rem;

			&:first-child {
				background-color: #808080;
				color: #fff;
				font-weight: 700;
				border-right: 0.1rem solid #DDDDDD;
				border-left: 0.1rem solid #DDDDDD;
			}
		}
	}
}

.plan-table-img-container {
	width: 100%;
	transform: translateX(-0.3rem) scale(1.06);

	@media screen and (max-width: 767px) {
		width: 60rem;
		transform: translateX(0) scale(1);
		overflow: scroll;

		&::before {
			content: '←';
			position: absolute;
			left: 2rem;
			bottom: 1rem;
			animation: moveArrow 3s linear infinite;
			font-size: 2rem;
			color: #ddd;
			border: 0.4rem solid #ddd;
			border-radius: 50%;
			width: 4rem;
			height: 4rem;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: opacity 0.5s ease-in-out;
			opacity: 1;
			pointer-events: none;
			z-index: 10;
		}
	}
}

@keyframes moveArrow {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(-1.5rem);
	}

	100% {
		transform: translateX(0);
	}
}

@media screen and (max-width: 767px) {
	.wrap-overflow-table {
		overflow: scroll;
	}
}

.under-table-list {
	margin-top: 0.2rem;
	margin-left: 2rem;

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

	& ul {
		list-style: unset;
	}

	& ul li {
		font-style: normal;
		font-weight: 500;
		font-size: 1.6rem;
		line-height: 2.4rem;
		letter-spacing: 0.04em;
		color: #2A2A2A;
		list-style: unset;

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

.arrow-plan {
	width: 7.9rem;
	margin-top: 3.2rem;
	margin-bottom: 3.2rem;
	margin-left: auto;
	margin-right: auto;

	@media screen and (max-width: 767px) {
		width: 4.9rem;
		margin-top: 1.2rem;
		margin-bottom: 1rem;
	}
}

.plan-bottom-up-text {
	font-weight: 800;
	font-size: 2.8rem;
	line-height: 3.5rem;
	text-align: center;
	letter-spacing: 0.05em;
	color: #2A2A2A;
	margin-bottom: 3.6rem;

	@media screen and (max-width: 767px) {
		font-size: 1.8rem;
		line-height: 2.5rem;
		margin-bottom: 1.8rem;
	}
}

.plan-bottom-text {
	position: relative;
	font-style: normal;
	font-weight: 800;
	font-size: 4.6rem;
	line-height: 3.5rem;
	text-align: center;
	letter-spacing: 0.01em;
	color: #2A2A2A;

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

.plan-bottom-text::after {
	content: "";
	position: absolute;
	background-color: #FFF584;
	width: 74.5rem;
	height: 2.5rem;
	bottom: -0.7rem;
	left: 14.9rem;
	right: 0;
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.plan-bottom-text::after {
		width: 34rem;
		height: 1rem;
		bottom: 3.3rem;
		left: -0.3rem;
		right: 0;
	}
}

.plan-bottom-text span {
	font-size: 2.4rem;
}

.plan-bottom-relative-img-container {
	position: relative;
}

.plan-bottom-img-cat-container {
	position: absolute;
	bottom: -10rem;
	right: -5rem;
	width: 18rem;
	height: 21.7rem;

	@media screen and (max-width: 767px) {
		bottom: -7.3rem;
		right: 0rem;
		width: 7rem;
		height: 8.7rem;
	}
}

.plan-bottom-img-bubble-container {
	position: absolute;
	bottom: -9rem;
	right: 18rem;
	width: 89.2rem;
	height: 6.6rem;

	@media screen and (max-width: 767px) {
		bottom: -6rem;
		right: 7rem;
		width: 28.2rem;
		height: 3.3rem;
	}
}


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

.contact {
	position: relative;
	background: #601DBF;
	padding: 8.4rem 0 15rem;
	overflow: hidden;

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

	.contact-inner {
		position: relative;
		z-index: 1;

		.contact-cards {
			display: flex;
			flex-direction: column;
			gap: 4rem;
			margin-bottom: 3rem;

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

			.contact-card {
				height: 27.1rem;
				position: relative;
				background-color: var(--contact-card-bg);
				border-radius: 1.5rem;
				box-shadow: 0px 0px 18.2px 7px rgba(28, 82, 145, 0.34);
				padding: 4rem 4rem 4rem 6rem;
				display: flex;
				align-items: center;
				gap: 3rem;
				opacity: 1;

				@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: 4.4rem;
							left: 11.4rem;
							letter-spacing: 0.01em;
						}
					}
				}

				.contact-card-arrow {
					flex-shrink: 0;
					width: 3rem;

					@media screen and (max-width: 767px) {
						width: 1.2rem;
						position: absolute;
						top: 6.5rem;
						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: 0;
					}
				}
			}
		}
	}
}

#contact2 {
	padding-bottom: 8.4rem;
}

.contact-cards-pdf {
	margin-bottom: 0 !important;
}

.contact-cards-pdf .contact-card-title {
	@media screen and (max-width: 767px) {
		top: 6rem !important;
	}
}

.contact-card-mail .contact-card-icon {
	background-color: #601DBF;
}

.contact-card-pdf .contact-card-icon {
	background-color: #F81769;
}

.contact-card-pdf .contact-card-icon img {
	@media screen and (max-width: 1440px) {
		width: 40%;
	}

	@media screen and (max-width: 767px) {
		width: 100%;
		transform: scale(0.4) !important;
	}
}

.contact-card-download .contact-card-icon {
	background-color: #601DBF;
}

.contact-card-pdf .contact-card-title {
	color: #F81769;
}

.contact-card-mail .contact-card-title {
	color: #601DBF;
}

.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;
			}
		}
	}
}

/* --------------------------------------------------------------- */
/* guide */
/* --------------------------------------------------------------- */

#guide {
	background-color: #F6F0FF;
	padding-top: 12rem;
	clip-path: ellipse(180% 100% at bottom);
	z-index: 2;
	margin-top: -10rem;
	padding-bottom: 10.5rem;

	@media screen and (max-width: 1080px) {
		margin-top: -6rem;
	}

	@media screen and (max-width: 767px) {
		clip-path: ellipse(480% 100% at bottom);
		margin-top: -2rem;
		padding-top: 5rem;
	}
}

.guide-title-red {
	font-style: normal;
	font-weight: 800;
	font-size: 3.1rem;
	/* line-height: 32px; */
	text-align: center;
	letter-spacing: 0.05em;
	color: #F81769;
	margin-bottom: 1rem;

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

.guide-title-main {
	font-style: normal;
	font-weight: 900;
	font-size: 5.4rem;
	line-height: 8rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #2A2A2A;
	margin-bottom: 7rem;

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

.implimentation-card-guide {
	width: 100%;
	background-color: #FFFFFF;
	border-radius: 1.4rem;
	padding-left: 11.9rem;
	padding-right: 11.8rem;
	display: flex;
	gap: 6.5rem;
	margin-bottom: 4.2rem;

	@media screen and (max-width: 767px) {
		display: block;
		padding: 3.5rem 2rem 4rem;
	}
}

.implimentation-card-guide .video-container {
	width: 35.7rem;

	@media screen and (max-width: 767px) {
		width: 17.1rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.implimentation-card-text-contents {
	padding-top: 9.8rem;
	max-width: 62.1rem;

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

.implimentation-card-text-contents h3 {
	font-style: normal;
	font-weight: 700;
	font-size: 3.7rem;
	line-height: 3.9rem;
	letter-spacing: 0.08em;
	color: #2A2A2A;
	margin-bottom: 2.3rem;

	@media screen and (max-width: 767px) {
		text-align: center;
		font-size: 2.2rem;
		margin-bottom: 0;
	}
}

.implimentation-card-text-contents p {
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 3.3rem;
	letter-spacing: 0.04em;
	color: #2A2A2A;
	margin-bottom: 2.7rem;

	@media screen and (max-width: 767px) {
		font-size: 1.6rem;
		line-height: 2.6rem;
		margin-bottom: 2rem;
		margin-top: 2rem;
	}
}

.tag-container {
	display: flex;
	gap: 1rem;
	margin-bottom: 4rem;
}

.tag-content {
	font-style: normal;
	font-weight: 500;
	font-size: 1.6rem;
	/* line-height: 3.2rem; */
	color: #696969;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: white;
	border: 1px solid #B4B4B4;
	padding: 1.4rem 1rem;

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

.guide-implimentation-btn {
	font-style: normal;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 3.4rem;
	letter-spacing: 0.02em;
	color: #FFFFFF;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	gap: 1rem;
	width: 40rem;
	height: 5.5rem;
	background: #601DBF;
	box-shadow: 0 0.5rem 0.2rem rgba(0, 0, 0, 0.25);
	border-radius: 4.8rem;
	transition: all 0.3s ease;

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

.guide-implimentation-btn:hover {
	background-color: #4B00B2;
	box-shadow: 0 0rem 0rem rgba(0, 0, 0, 0.25);
}

.ourAccount-title {
	font-style: normal;
	font-weight: 900;
	font-size: 5.4rem;
	line-height: 8rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #000000;
	margin-bottom: 5.6rem;

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

.our-account-card-guide {
	background-color: #FFFFFF;
	border-radius: 1.4rem;
	padding-top: 8.3rem;
	padding-left: 12.3rem;
	padding-right: 7.7rem;
	padding-bottom: 5.8rem;
	width: 100%;
	height: 90rem;

	@media screen and (max-width: 767px) {
		padding: 2.7rem 2rem 4rem;
		height: 62rem;
	}
}

.our-account-card-guide h3 {
	position: relative;
	font-style: normal;
	font-weight: 700;
	font-size: 3.3rem;
	line-height: 4.4rem;
	letter-spacing: 0.08em;
	color: #2A2A2A;
	margin-bottom: 2.2rem;
	padding-left: 6.2rem;

	@media screen and (max-width: 767px) {
		font-size: 2.2rem;
		line-height: 2.9rem;
		padding-left: 5.2rem;
		max-width: 29rem;
		margin-bottom: 1.8rem;
	}
}

.our-account-card-guide h3 span {
	position: absolute;
	width: 4.9rem;
	height: 4.9rem;
	left: 0;

	@media screen and (max-width: 767px) {
		width: 3.4rem;
		height: 3.4rem;
		left: 0.8rem;
		top: -0.2rem;
	}
}

.our-account-card-guide p {
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 3.3rem;
	letter-spacing: 0.04em;
	color: #2A2A2A;
	max-width: 108rem;
	margin-bottom: 4.3rem;

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

.our-account-img-countainer {
	width: 83.4rem;
	margin-bottom: 5.2rem;
	margin-left: auto;
	margin-right: auto;

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

.our-account-container .guide-implimentation-btn {
	margin-left: auto;
	margin-right: auto;
}

.custom-button-next {
	width: 15%;
	height: 15%;
	background: url("img/slidder-arrow.png") no-repeat center / 100% auto;
	transform: rotate(180deg);
	left: 134rem !important;
	top: 76% !important;
	right: 0rem !important;
	position: absolute;
	width: 2.6rem;
	height: 5.3rem;
	cursor: pointer;

	@media screen and (max-width: 767px) {
		width: 1.1rem;
		height: 2.7rem;
		z-index: 2;
		top: 80% !important;
		left: 34.7rem !important;
	}
}

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

.custom-button-prev {
	width: 15%;
	height: 15%;
	background: url("img/slidder-arrow.png") no-repeat center / 100% auto;
	right: 1rem !important;
	top: 76% !important;
	left: -7rem !important;
	position: absolute;
	width: 2.6rem;
	height: 5.3rem;
	cursor: pointer;

	@media screen and (max-width: 767px) {
		width: 1.1rem;
		height: 2.7rem;
		z-index: 2;
		top: 80% !important;
		left: -1.3rem !important;
	}
}

.custom-button-prev::after {
	display: none;
}

.custom-button-next2 {
	width: 15%;
	height: 15%;
	background: url("img/slidder-arrow.png") no-repeat center / 100% auto;
	transform: rotate(180deg);
	left: 134rem !important;
	top: 26% !important;
	right: 0rem !important;
	position: absolute;
	width: 2.6rem;
	height: 5.3rem;
	cursor: pointer;

	@media screen and (max-width: 767px) {
		width: 1.1rem;
		height: 2.7rem;
		z-index: 2;
		top: 30% !important;
		left: 34.8rem !important;
	}
}

.custom-button-next2::after {
	display: none;
}

.custom-button-prev2 {
	width: 15%;
	height: 15%;
	background: url("img/slidder-arrow.png") no-repeat center / 100% auto;
	right: 1rem !important;
	top: 26% !important;
	left: -7rem !important;
	position: absolute;
	width: 2.6rem;
	height: 5.3rem;
	cursor: pointer;

	@media screen and (max-width: 767px) {
		width: 1.1rem;
		height: 2.7rem;
		z-index: 2;
		top: 30% !important;
		left: -1.4rem !important;
	}
}

.custom-button-prev2::after {
	display: none;
}


/* --------------------------------------------------------------- */
/* staff */
/* --------------------------------------------------------------- */

#staff {
	background-color: #FFFFFF;
	padding-top: 8.5rem;
	padding-bottom: 8.3rem;

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

.staff-title {
	font-style: normal;
	font-weight: 900;
	font-size: 5.4rem;
	line-height: 8rem;
	text-align: center;
	letter-spacing: 0.02em;
	color: #000000;
	margin-bottom: 5.2rem;

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

.staff-flex-container {
	display: flex;
	gap: 7.7rem;
	margin-bottom: 5.8rem;
	align-items: center;
	justify-content: center;

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

@media screen and (max-width: 767px) {
	.sp-flex-staff-img-text {
		display: flex;
		align-items: center;
		gap: 1.7rem;
	}

	.sp-staff-img-container.pc-off {
		width: 12.7rem;
		height: 12.7rem;
	}
}

.staff-card-container-img {
	width: 28.6rem;
	margin-bottom: 1.9rem;

	@media screen and (max-width: 767px) {
		width: 25.7rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.staff-card-container h4 {
	font-style: normal;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 2.4rem;
	text-align: center;
	letter-spacing: 0.04em;
	color: #0B0B0B;
	margin-bottom: 1.8rem;

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

.staff-card-container h3 {
	font-style: normal;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 2.7rem;
	text-align: center;
	letter-spacing: 0.04em;
	color: #0B0B0B;

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

.staff-cat-img {
	width: 82.8rem;
	margin-left: auto;
	margin-right: auto;

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

/* --------------------------------------------------------------- */
/* company */
/* --------------------------------------------------------------- */
#company {
	background-color: #F8F8F8;
	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;
					line-height: 1.5;

					@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: none;
					padding: 3rem 0 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;
		flex-wrap: wrap;

		@media screen and (max-width: 767px) {
			flex-wrap: wrap;
			gap: 1rem;
			justify-content: flex-start;
		}

		.footer-familia-link {
			width: 27.6rem;
			transition: ease 0.3s all;

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

			&:hover {
				opacity: 0.8;
			}

			& img {
				width: 100%;
				vertical-align: middle;
			}
		}
	}

	.footer-copyright {
		& small {
			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;
			display: block;

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

/* animation */
.fade-in-section {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

.is-visible {
	opacity: 1;
}

@media print {
	.fade-in-section {
		opacity: 1;
	}

	#header {
		position: absolute;
	}
}