@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document load
--------------------------------------------------------- */

#load {
	--rocket-height: 30vw;
	height: 100vh;
	overflow: hidden;
	background: radial-gradient(90vw 75vw at center, #91c1e6 10%, #7ab0e0 33%, #78afe0 45%, #0071bc 98%);
	position: fixed;
	inset: 0;
	z-index: 9999;
	animation: screenUp 1.3s cubic-bezier(0.86, 0, 0.07, 1) forwards 3.6s;
}
.is-visited #load { display: none !important; }

@keyframes screenUp {
	0%   { opacity: 1; }
	100% { opacity: 0; }
}

.load_num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100svh;
	position: relative;
}

.load_num img {
	width: 19vw;
	height: auto;
	aspect-ratio: 150 / 150;
	object-fit: cover;
	position: absolute;
	opacity: 0;
	animation: countdown 0.6s linear forwards;
}
.load_num .is-3 {
	animation-delay: 0s;
}
.load_num .is-2 {
	animation-delay: 0.6s;
}
.load_num .is-1 {
	animation-delay: 1.2s;
}
@keyframes countdown {
	0% { opacity: 1; }
	85% { opacity: 1; }
	100% { opacity: 0; }
}

.fade-in-out {
	animation: fade 0.8s ease forwards;
}

.fade-in {
	animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeInOut {
	0% { opacity: 0; transform: scale(0.9); }
	30% { opacity: 1; transform: scale(1); }
	70% { opacity: 1; transform: scale(1); }
	100% { opacity: 0; transform: scale(1.1); }
}

@keyframes fadeIn {
	0% { opacity: 0; transform: scale(0.9); }
	100% { opacity: 1; transform: scale(1); }
}

.load_cloud_wrap {
	width: 100vw;
	height: 200vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	transform: translateY(0);
	animation: cloudUp 1.6s cubic-bezier(0.75, 0, 0.75, 0.08) forwards 2.1s;
}
@keyframes cloudUp {
	0% { transform: translateY(0); }
	100% { transform: translateY(-100vh); }
}

.cloud_inner_wrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(100vh);
	animation: cloudLift 0.4s ease-out forwards 1.7s;
}
@keyframes cloudLift {
	0% { transform: translateY(100vh); }
	100% { transform: translateY(70vh); }
}

.cloud {
	width: 106vw;
	position: absolute;
	left: -6vw;
	animation: cloudY 1.4s ease-in-out infinite 0.2s;
}

.load_cloud_wrap .cloud3 {
	top: 2vw;
	animation-delay: -0.3s;
}

.load_cloud_wrap .cloud2 {
	top: 12vw;
	animation-delay: -0.6s;
}

.load_cloud_wrap .cloud1 {
	top: 25vw;
}

.load_cloud_wrap .cloud1:after {
	content: '';
	width: 100%;
	height: 120vh;
	background: #fff;
	position: absolute;
	top: 20vw;
	left: 0;
	z-index: 1;
}

.cloud_inner {
	animation: cloudVibe 2.4s ease-in-out infinite;
}

.cloud1 .cloud_inner {
	animation-duration: 2.2s;
}
.cloud2 .cloud_inner {
	animation-duration: 2.8s;
	animation-delay: -0.3s;
}
.cloud3 .cloud_inner {
	animation-duration: 3.2s;
	animation-delay: -0.6s;
}

@keyframes cloudVibe {
	0%   { transform: scale(1.1); }
	20%  { transform: scale(1.11); }
	40%  { transform: scale(1.14); }
	60%  { transform: scale(1.12); }
	80%  { transform: scale(1.15); }
	100% { transform: scale(1.1); }
}

@keyframes cloudY {
	0%   { transform: translateY(0px) }
	60%  { transform: translateY( var(--cloudY) ); }
	100% { transform: translateY(0px); }
}

.load_rocket_wrap {
	width: 100%;
	height: var(--rocket-height);
	transform: translateY( var(--rocket-height) );
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	pointer-events: none;
	animation: rocketLift 0.8s linear forwards 1.6s;
}
@keyframes rocketLift {
	0% { transform: translateY( var(--rocket-height) ); }
	100% { transform: translateY(-20%); }
}

.load_rocket_wrap img {
	width: auto;
	height: var(--rocket-height);
}

.rocket_inner {
	transform: translateY(0);
	animation: rocketFly 1.3s cubic-bezier(0.75, 0, 0.95, 0) forwards 1.8s;
}
@keyframes rocketFly {
	0% { transform: translateY(0); }
	100% { transform: translateY(-105vh); }
}

.load_rocket {
	animation: rocketVibe 0.1s forwards;
	animation-iteration-count: 30;
}
@keyframes rocketVibe {
	0%   { transform: translateX( 0); }
	25%  { transform: translateX( -2px); }
	50%  { transform: translateX( 0); }
	75%  { transform: translateX( 2px); }
	100% { transform: translateX( 0); }
}

@media only screen and (min-width: 1260px) {
	#load {
		--rocket-height: 212px;
		background: radial-gradient(ellipse at center,	#91c1e6 10%,#7ab0e0 33%,#78afe0 45%,#0071bc 98%);
	}
	#load .load_num img {
		width: 150px;
		height: 150px;
	}
	@keyframes cloudLift {
		0% { transform: translateY(100vh); }
		100% { transform: translateY(45vh); }
	}
	.cloud {
		width: 110vw;
		left: -5vw;
	}
	.load_cloud_wrap .cloud3 {
		top: -5vh;
	}
	.load_cloud_wrap .cloud2 {
		top: 10vh;
	}
	.load_cloud_wrap .cloud1 {
		top: 30vh;
	}
	.load_rocket_wrap {
		animation: rocketLift1 0.8s linear forwards 1.6s;
	}
	@keyframes rocketLift1 {
		0% { transform: translateY( var(--rocket-height) ); }
		100% { transform: translateY(10%); }
	}
	.rocket_inner {
		animation-delay: 1.7s;
	}
	.load_rocket {
		animation: rocketVibepc 0.1s forwards;
		animation-iteration-count: 30;
	}
	@keyframes rocketVibepc {
		0%	 { transform: translateX( 0); }
		25%	{ transform: translateX( -5px); }
		50%	{ transform: translateX( 0); }
		75%	{ transform: translateX( 5px); }
		100% { transform: translateX( 0); }
	}
}

@media only screen and (min-width: 767px) and (max-width: 1259px) {
	#load {
		--rocket-height: 18vw;
		background: radial-gradient(ellipse at center,	#91c1e6 10%,#7ab0e0 33%,#78afe0 45%,#0071bc 98%);
	}
	#load .load_num img {
		width: 11.9047619047619vw;
		height: 11.9047619047619vw;
	}
	.cloud_inner_wrap {
		transform: translateY(110vh);
	}
	@keyframes cloudLift {
		0% { transform: translateY(110vh); }
		100% { transform: translateY(45vh); }
	}
	.load_cloud_wrap .cloud3 {
		top: -5vw;
		animation-delay: -0.3s;
	}
	.load_cloud_wrap .cloud2 {
		top: 5vw;
		animation-delay: -0.6s;
	}
	.load_cloud_wrap .cloud1 {
		top: 18vw;
	}
	.load_rocket_wrap {
		animation: rocketLift1 0.8s linear forwards 1.6s;
	}
	@keyframes rocketLift1 {
		0% { transform: translateY( var(--rocket-height) ); }
		100% { transform: translateY(10%); }
	}
	.rocket_inner {
		animation-delay: 1.7s;
	}
	.load_rocket {
		animation: rocketVibepc 0.1s forwards;
		animation-iteration-count: 30;
	}
	@keyframes rocketVibepc {
		0%	 { transform: translateX( 0); }
		25%	{ transform: translateX( -5px); }
		50%	{ transform: translateX( 0); }
		75%	{ transform: translateX( 5px); }
		100% { transform: translateX( 0); }
	}
}

/* ---------------------------------------------------------
	CSS Document illust_section
--------------------------------------------------------- */

@media only screen and (max-width: 766px) {
	body:not(#body-top) #illust_section {
		display: none;
	}
	#illust_section {
		position: relative;
		z-index: 0;
	}
	.illust_row {
		width: 100vw;
		height: 100svh;
		overflow: hidden;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
}

html:not(.is-visited) #body-top #illust_section .illust_row {
	opacity: 0;
	transform: translate3d(0, -10%, 0) rotate(.001deg);
	transition: opacity 0.8s ease, transform 0.8s ease;
	transition-delay: 1.0s;
}

html:not(.is-visited) #body-top #illust_section.illust-on .illust_row {
	opacity: 1;
	transform: translate3d(0, 0, 0) rotate(.001deg);
	transition-delay: var(0.3s, 0.3s);
}

.illust_01 {
	width: 16vw;
	height: 7.8vw;
	position: absolute;
	top: 20vw;
	left: 74.8vw;
	z-index: 1;
	animation: star-satellite 6s ease-in-out infinite;
}

.illust_02 {
	width: 8.6vw;
	height: 8.4vw;
	position: absolute;
	top: 40vw;
	left: 82vw;
	z-index: 1;
	animation: star-shootingstar 4s ease-in-out infinite;
}

.illust_03 {
	width: 12vw;
	height: 9.2vw;
	position: absolute;
	top: 30vh;
	left: 84.8vw;
	z-index: 1;

	--duration: 20s;
	--delay: 0s;
	animation: star-planet var(--duration) ease-in-out var(--delay) infinite;
}

.illust_04 {
	width: 11.2vw;
	height: 12.2vw;
	position: absolute;
	top: 46vh;
	left: 72vw;
	z-index: 1;
	animation: star-shootingstar-toright 5s ease-in-out infinite;
}

@keyframes star-shootingstar-toright {
	0% {
		opacity: 0;
		transform: translate(-20px, -20px);
		filter: brightness(1);
	}
	20% {
		opacity: 1;
		filter: brightness(1.5);
	}
	60% {
		opacity: 1;
		filter: brightness(1.8);
	}
	100% {
		opacity: 0;
		transform: translate(80px, 44px) scale(0.5);
		filter: brightness(1);
	}
}

.illust_05 {
	width: 3vw;
	height: 3vw;
	position: absolute;
	top: 14vw;
	left: 67vw;
	z-index: 1;
	animation: star-pulsate 3s ease-in-out infinite;
}

.illust_06 {
	width: 8vw;
	height: 7.8vw;
	position: absolute;
	top: 13vh;
	left: 10vw;
	z-index: 1;

	--duration: 17s;
	--delay: -2s;
	animation: star-planet var(--duration) ease-in-out var(--delay) infinite;
}

.illust_07 {
	width: 3.8vw;
	height: 3.8vw;
	position: absolute;
	top: 32vh;
	left: 17vw;
	z-index: 1;
	animation: star-pulsate 3s ease-in-out infinite -1s;
}

.illust_08 {
	width: 9.8vw;
	height: 9.8vw;
	position: absolute;
	top: 36vh;
	left: 6vw;
	z-index: 1;
	animation: star-satellite 6s ease-in-out infinite -2s;
}

.illust_09 {
	width: 5.2vw;
	height: 5.2vw;
	position: absolute;
	top: 54vh;
	left: 8vw;
	z-index: 1;
	animation: star-pulsate 3s ease-in-out infinite -1s;
}

.illust_10 {
	width: 8.4vw;
	height: 9.4vw;
	position: absolute;
	animation: illust_10 8s linear infinite;
	transform-origin: left bottom;
}
@keyframes illust_10 {
	0% {
		opacity: 0;
		transform: translate(4.3616vw, -3.9651vw);
		filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.3));
	}
	10% {
		opacity: 1;
		filter: drop-shadow(0 0 10px rgba(255, 0, 0, 1));
	}
	40% {
		opacity: 1;
		filter: drop-shadow(0 0 8px rgba(255, 0, 0, 1));
	}
	50% {
		opacity: 0;
		transform: translate(-5.5511vw, 4.3616vw) scale(0.8);
		filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.3));
	}
	100% {
		opacity: 0;
		transform: translate(-7.1372vw, 5.5511vw) scale(0);
		filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.3));
	}
}
.illust_10-y {
	animation: star-vibration 0.1s linear infinite;
}
@keyframes star-vibration {
	0% {
		transform: translateY(0);
	}
	33% {
		transform: translateY(-1px);
	}
	66% {
		transform: translateY(1px);
	}
	100% {
		transform: translateY(0);
	}
}

.illust_04a {
	width: 11.4vw;
	height: 12.4vw;
	position: absolute;
	top: 8vw;
	left: 6vw;
	animation: illust_04a 8s linear infinite;
	transform-origin: right bottom;
}
@keyframes illust_04a {
	0% {
		opacity: 0;
		transform: translate(-4.3616vw, -3.9651vw);
		filter: drop-shadow(0 0 2px rgba(159, 22, 201, 0.3));
	}
	10% {
		opacity: 1;
		filter: drop-shadow(0 0 10px rgba(159, 22, 201, 1));
	}
	40% {
		opacity: 1;
		filter: drop-shadow(0 0 8px rgba(159, 22, 201, 1));
	}
	50% {
		transform: translate(5.5511vw, 4.3616vw) scale(0.8);
		filter: drop-shadow(0 0 2px rgba(159, 22, 201, 0.3));
	}
	100% {
		transform: translate(7.1372vw, 5.5511vw) scale(0);
		filter: drop-shadow(0 0 2px rgba(159, 22, 201, 0.3));
	}
}
.illust_04a-y {
	animation: star-vibration 0.1s linear infinite;
}

@media only screen and (min-width: 1260px) {
	#illust_section {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100vw;
		height: calc(100svh - 80px);
		position: fixed;
		top: 0;
		left: 0;
		pointer-events: none;
	}
	.illust_row {
		width: 100vw;
		height: 660px;
		position: relative;
		z-index: 0;
	}
	.illust_01 {
		width: 95px;
		height: 47px;
		width: 140px;
		height: auto;
		margin-left: 461px;
		margin-left: 36.55828707375099vw;
		top: 0px;
		left: 50%;
	}
	.illust_10 {
		width: 42px;
		height: 47px;
		margin-left: 326px;
		margin-left: 25.8525vw;
		top: 30px;
		left: 50%;
	}
	.illust_07 {
		width: 20px;
		height: 20px;
		margin-left: 20vw;
		top: 160px;
		left: 50%;
		animation: star-pulsate 3s ease-in-out infinite -1s;
	}
	.illust_15 {
		width: 19px;
		height: 19px;
		margin-left: 42.8232vw;
		position: absolute;
		top: 190px;
		left: 50%;
		animation: illust_15 1.8s ease-in-out infinite;
	}
	@keyframes illust_15 {
		0%, 100% {
			filter: none;
		}
		50% {
			filter: drop-shadow(0 0 6px rgba(255, 102, 204, 1)) drop-shadow(0 0 2px rgba(199, 40, 146, 0.8));
		}
	}
	.illust_05a {
		width: 17px;
		height: 16px;
		margin-left: 20vw;
		position: absolute;
		top: 510px;
		left: 50%;
		animation: star-pulsate 3s ease-in-out infinite -1s;
	}
	.illust_05 {
		width: 15px;
		height: 15px;
		margin-left: 260px;
		top: 510px;
		left: 50%;
		animation: star-pulsate 1.4s ease-in-out infinite -2s;
	}
	.illust_06 {
		width: 40px;
		width: 90px;
		height: 85px;
		height: auto;
		width: 3.1746vw;
		height: 3.0952vw;
		margin-left: 33.3069vw;
		top: 630px;
		left: 50%;
	}
	.illust_04 {
		width: 44px;
		height: 48px;
		margin-left: 41.2371vw;
		top: 550px;
		left: 50%;
		animation: none;
	}
	.illust_11 {
		width: 80px;
		height: 32px;
		margin-left: 280px;
		position: absolute;
		top: 590px;
		left: 50%;
		z-index: 1;
		animation: illust11-opacity 18s ease-in-out infinite;
	}
	.illust_11-x {
		transform: translateX(50vw);
		animation: illust11-x 18s ease-in-out infinite;
	}
	@keyframes illust11-x {
		0% { transform: translateX(50vw); }
		100% { transform: translateX(-100vw); }
	}
	@keyframes illust11-opacity {
		0% { opacity: 1; }
		40% { opacity: 1; }
		43% { opacity: 0; }
		56% { opacity: 0; }
		60% { opacity: 1; }
		100% { opacity: 1; }
	}
	.illust_12 {
		width: 38px;
		height: 38px;
		width: 90px;
		height: 90px;
		width: 3.0159vw;
		height: 3.0159vw;
		margin-left: -45.9952vw;
		position: absolute;
		top: 0;
		left: 50%;
		z-index: 1;
		--duration: 17s;
		--delay: -2s;
		animation: star-planet var(--duration) ease-in-out var(--delay) infinite;
	}
	.illust_03 {
		width: 60px;
		height: 46px;
		width: 100px;
		height: 76px;
		width: 4.8413vw;
		height: 3.6508vw;
		margin-left: -38.065vw;
		top: 105px;
		left: 50%;
	}
	.illust_02 {
		width: 43px;
		height: 42px;
		margin-left: -26.1697vw;
		top: 70px;
		left: 50%;
	}
	.illust_05 {
		width: 17px;
		height: 16px;
		margin-left: -45.1943vw;
		top: 170px;
		left: 50%;
	}
	.illust_13 {
		width: 41px;
		height: 40px;
		width: 90px;
		height: auto;
		width: 3.254vw;
		height: 3.1746vw;
		margin-left: -22vw;
		position: absolute;
		top: 170px;
		left: 50%;
		z-index: 1;
		animation: illust13-y 4s ease-in-out infinite;
	}
	.illust_13-rotate {
		animation: illust13-rotate 50s linear infinite;
	}
	@keyframes illust13-y {
		0% { transform: translateY(0); }
		50% { transform: translateY(2px); }
		100% { transform: translateY(0); }
	}
	@keyframes illust13-rotate {
		0% { transform: rotate(0deg); }
		25% { transform: rotate(90deg); }
		50% { transform: rotate(180deg); filter: saturate(1); }
		75% { transform: rotate(270deg); filter: saturate(1.6); }
		100% { transform: rotate(360deg); filter: saturate(1); }
	}
	.illust_09 {
		width: 26px;
		height: 27px;
		margin-left: -25.3767vw;
		top: 278px;
		left: 50%;
	}
	.illust_04a {
		width: 57px;
		height: 62px;
		margin-left: -43.6162vw;
		top: 440px;
		left: 50%;
	}
	.illust_08 {
		width: 45px;
		height: 44px;
		width: 88px;
		height: auto;
		width: 3.5714vw;
		height: 3.4921vw;
		margin-left: -44.4092vw;
		top: 570px;
		left: 50%;
		animation: illust_08-y 8s ease-in-out infinite -1s;
	}
	.illust_08-rotate {
		animation: illust13-rotate 80s linear infinite -5s;
	}
	@keyframes illust_08-y {
		0% { transform: translateY(0); }
		50% { transform: translateY(4px); }
		100% { transform: translateY(0); }
	}
	.illust_08 img {
		width: 45px;
		height: 44px;
		width: 88px;
		height: auto;
	}
	.illust_07a {
		width: 20px;
		height: 20px;
		margin-left: -24vw;
		position: absolute;
		top: 580px;
		left: 50%;
		animation: star-pulsate 3s ease-in-out infinite -1s;
	}
}

@media only screen and (min-width: 767px) and (max-width: 1259px) {
	#illust_section {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100vw;
		height: calc(100svh - 6.3492vw);
		position: fixed;
		top: 0;
		left: 0;
		pointer-events: none;
	}
	.illust_row {
		width: 100vw;
		height: 52.381vw;
		position: relative;
		z-index: 0;
	}
	.illust_01 {
		width: 7.5397vw;
		height: 3.7302vw;
		margin-left: 36.5873vw;
		top: 3.1746vw;
		left: 50%;
	}
	.illust_10 {
		width: 3.3333vw;
		height: 3.7302vw;
		margin-left: 25.873vw;
		position: absolute;
		top: 2.381vw;
		left: 50%;
	}
	.illust_07 {
		width: 1.6667vw;
		height: 1.6667vw;
		margin-left: 20vw;
		top: 160px;
		left: 50%;
		animation: star-pulsate 3s ease-in-out infinite -1s;
	}
	.illust_15 {
		width: 1.5079vw;
		height: 1.5079vw;
		margin-left: 20.873vw;
		top: 13.4921vw;
		left: 50%;
		animation: star-pulsate 3s ease-in-out infinite -1s;
	}
	.illust_05a {
		width: 1.3492vw;
		height: 1.2698vw;
		margin-left: 20.873vw;
		position: absolute;
		top: 40.4762vw;
		left: 50%;
		animation: star-pulsate 3s ease-in-out infinite -1s;
	}
	.illust_09 {
		width: 2.0635vw;
		height: 2.0635vw;
		margin-left: 42.0635vw;
		top: 15.0794vw;
		left: 50%;
		animation: star-pulsate 1.4s ease-in-out infinite -2s;
	}
	.illust_05 {
		width: 1.1905vw;
		height: 1.1905vw;
		margin-left: 20.6349vw;
		top: 40.4762vw;
		left: 50%;
		animation: star-pulsate 1.4s ease-in-out infinite -2s;
	}
	.illust_06 {
		width: 3.1746vw;
		height: 3.0952vw;
		margin-left: 33.3333vw;
		top: 44.4444vw;
		left: 50%;
	}
	.illust_04 {
		width: 3.4921vw;
		height: 3.8095vw;
		margin-left: 41.2698vw;
		top: 43.6508vw;
		left: 50%;
		animation: none;
	}
	.illust_11 {
		width: 6.3492vw;
		height: 2.5397vw;
		margin-left: 22.2222vw;
		position: absolute;
		top: 46.8254vw;
		left: 50%;
		z-index: 1;
		animation: illust11-opacity 18s ease-in-out infinite;
	}
	.illust_11-x {
		transform: translateX(50vw);
		animation: illust11-x 18s ease-in-out infinite;
	}
	@keyframes illust11-x {
		0% { transform: translateX(50vw); }
		100% { transform: translateX(-100vw); }
	}
	@keyframes illust11-opacity {
		0% { opacity: 1; }
		40% { opacity: 1; }
		43% { opacity: 0; }
		56% { opacity: 0; }
		60% { opacity: 1; }
		100% { opacity: 1; }
	}
	.illust_12 {
		width: 3.0159vw;
		height: 3.0159vw;
		margin-left: -46.0317vw;
		position: absolute;
		top: 2.5397vw;
		left: 50%;
		z-index: 1;
		--duration: 17s;
		--delay: -2s;
		animation: star-planet var(--duration) ease-in-out var(--delay) infinite;
	}
	.illust_03 {
		width: 4.8413vw;
		height: 3.6508vw;
		margin-left: -38.0952vw;
		top: 8.3333vw;
		left: 50%;
	}
	.illust_02 {
		width: 3.4127vw;
		height: 3.3333vw;
		margin-left: -26.1905vw;
		top: 5.5556vw;
		left: 50%;
		animation-delay: 0.5s;
	}
	.illust_05 {
		width: 1.3492vw;
		height: 1.2698vw;
		margin-left: -45.2381vw;
		top: 13.4921vw;
		left: 50%;
	}
	.illust_13 {
		width: 3.254vw;
		height: 3.1746vw;
		margin-left: -26.9841vw;
		position: absolute;
		top: 13.4921vw;
		left: 50%;
		z-index: 1;
		animation: illust13-y 4s ease-in-out infinite;
	}
	.illust_13-rotate {
		animation: illust13-rotate 50s linear infinite;
	}
	@keyframes illust13-y {
		0% { transform: translateY(0); }
		50% { transform: translateY(0.1587vw); }
		100% { transform: translateY(0); }
	}
	@keyframes illust13-rotate {
		0% { transform: rotate(0deg); }
		25% { transform: rotate(90deg); }
		50% { transform: rotate(180deg); filter: saturate(1); }
		75% { transform: rotate(270deg); filter: saturate(1.6); }
		100% { transform: rotate(360deg); filter: saturate(1); }
	}
	.illust_09 {
		width: 2.0635vw;
		height: 2.1429vw;
		margin-left: -25.3968vw;
		top: 22.0635vw;
		left: 50%;
	}
	.illust_14 {
		width: 4.8413vw;
		height: 3.254vw;
		margin-left: -30.9524vw;
		position: absolute;
		top: 34.9206vw;
		left: 50%;
		z-index: 1;
		animation: 
			ufo-random-move 2s infinite ease-in-out,
			ufo-glow 2s infinite ease;
	}
	@keyframes ufo-random-move {
		0%, 100% {
			transform: translate(0, 0);
		}
		50% {
			transform: translate(0.7937vw, 0);
		}
	}
	@keyframes ufo-glow {
		0%, 100% {
			filter: brightness(1) drop-shadow(0 0 0vw rgba(0, 255, 255, 0));
		}
		50% {
			filter: brightness(1.3) drop-shadow(0 0 0.6349vw rgba(0, 255, 255, 0.8));
		}
	}
	.illust_14-x {
		animation: 
			illust_14-x 2s infinite ease-in-out -0.5s;
	}
	@keyframes illust_14-x {
		0%, 100% {
			transform: translate(0, 0);
		}
		50% {
			transform: translate(0, 0.7937vw);
		}
	}
	.illust_04a {
		width: 4.5238vw;
		height: 4.9206vw;
		margin-left: -43.6508vw;
		position: absolute;
		top: 34.9206vw;
		left: 50%;
		animation: illust_04a 8s linear infinite;
		transform-origin: right bottom;
	}
	@keyframes illust_04a {
		0% {
			opacity: 0;
			transform: translate(-4.3616vw, -3.9651vw);
			filter: drop-shadow(0 0 2px rgba(159, 22, 201, 0.3));
		}
		10% {
			opacity: 1;
			filter: drop-shadow(0 0 10px rgba(159, 22, 201, 1));
		}
		40% {
			opacity: 1;
			filter: drop-shadow(0 0 8px rgba(159, 22, 201, 1));
		}
		50% {
			transform: translate(5.5511vw, 4.3616vw) scale(0.8);
			filter: drop-shadow(0 0 2px rgba(159, 22, 201, 0.3));
		}
		100% {
			transform: translate(7.1372vw, 5.5511vw) scale(0);
			filter: drop-shadow(0 0 2px rgba(159, 22, 201, 0.3));
		}
	}
	.illust_04a-y {
		animation: star-vibration 0.1s linear infinite;
	}
	.illust_08 {
		width: 3.5714vw;
		height: 3.4921vw;
		margin-left: -44.4444vw;
		top: 45.2381vw;
		left: 50%;
		animation: illust_08-y 8s ease-in-out infinite -1s;
	}
	.illust_08-rotate {
		animation: illust13-rotate 80s linear infinite -5s;
	}
	@keyframes illust_08-y {
		0% { transform: translateY(0); }
		50% { transform: translateY(0.3175vw); }
		100% { transform: translateY(0); }
	}
	.illust_07a {
		width: 1.5873vw;
		height: 1.5873vw;
		margin-left: -23.8095vw;
		position: absolute;
		top: 46.0317vw;
		left: 50%;
		animation: star-pulsate 3s ease-in-out infinite -1s;
	}
}

/* ---------------------------------------------------------
	CSS Document top
--------------------------------------------------------- */

#hero {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100svh;
	min-height: 150vw;
}

.main_center {
	margin-top: clamp(20px, 11svh, 90px);
}

@media only screen and (max-width: 766px) {
	.main_center {
		display: flex;
		flex-direction: column;
		min-height: 100svh;
	}
	.main_middle {
		margin-top: auto;
		margin-bottom: auto;
	}
}

.main_astro_wrap {
	width: 67.4vw;
	height: 94.6vw;
	margin: 0 auto 10px;
	margin-bottom: clamp(10px, 3.5svh, 40px);
	position: relative;
	z-index: 0;
}

.main_astro {
	position: absolute;
	top: 0;
	left: 2.8vw;

	opacity: 0;
	transform: scale(0.1);
	transform-origin: bottom center;
	transition: 
		opacity .4s cubic-bezier(0.215, 0.61, 0.355, 1) .2s,
		transform .6s cubic-bezier(0.175, 0.885, 0.32, 1.275) .2s;
}
.hero-on .main_astro {
	opacity: 1;
	transform: scale(1);
}
.main_astro img {
	width: 53.2vw;
	height: auto;
	aspect-ratio: 266 / 402;
	object-fit: cover;
}

.main_1 {
	position: absolute;
	top: 63.6vw;
	left: 0;

	opacity: 0;
	transform: scale(0.1);
	transform-origin: bottom center;
	transition: 
		opacity .4s cubic-bezier(0.215, 0.61, 0.355, 1) .5s,
		transform .6s cubic-bezier(0.175, 0.885, 0.32, 1.275) .5s;
}
.hero-on .main_1 {
	opacity: 1;
	transform: scale(1);
}
.main_1 img {
	width: 67.6vw;
	height: auto;
	aspect-ratio: 338 / 154;
	object-fit: cover;
}

.main_2 {
	position: absolute;
	top: 66.4vw;
	left: 9vw;
	opacity: 0;
}
.hero-on .main_2 {
	animation: boyonJump 1.1s linear forwards 0.2s;
}
@keyframes boyonJump {
	0% {
		opacity: 0;
		transform: scaleY(0.1) translateY(10px);
	}
	12% {
		opacity: 1;
	}
	35% {
		transform: scaleY(2.5) translateY(-70px);
	}
	52% {
		transform: scaleY(1.0) translateY(0);
	}
	62% {
		transform: scaleY(0.7) translateY(15px);
	}
	80% {
		transform: scaleY(1.15) translateY(-8px);
	}
	100% {
		opacity: 1;
		transform: scaleY(1) translateY(0);
	}
}
.main_2 img {
	width: 49.2vw;
	height: auto;
	aspect-ratio: 246 / 45;
	object-fit: cover;
}

.main_3 {
	position: absolute;
	top: 82.2vw;
	left: 15vw;
	opacity: 0;
}
.hero-on .main_3 {
	animation: flyInLeft 1.1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.9s;
}
@keyframes flyInLeft {
  0% {
    transform: translateX(-100vw) scale(0.1) rotate(-1080deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}
.main_3 img {
	width: 38.6vw;
	height: auto;
	aspect-ratio: 193 / 45;
	object-fit: cover;
}

.main_4 {
	position: absolute;
	top: 8vw;
	left: 1.4vw;
}
.main_4a {
	width: 9vw;
	height: auto;
	aspect-ratio: 42 / 108;
	object-fit: cover;
	opacity: 0;
}
.hero-on .main_4a {
	animation: flyInTop 0.9s cubic-bezier(0.25, 1, 0.5, 1) forwards 1.6s;
}
@keyframes flyInTop {
	0% {
		transform: translateX(0) translateY(-100vh) scale(0.1) rotate(1080deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) translateY(0) scale(1) rotate(0deg);
		opacity: 1;
	}
}

.main_5 {
	position: absolute;
	top: 52.6vw;
	left: 43vw;
	opacity: 0;
}
.hero-on .main_5 {
	animation: main_5 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.9s;
}
@keyframes main_5 {
	0% {
		transform: translateX(100vw) translateY(-40vh) scale(0.1) rotate(1080deg);
		opacity: 0;
	}
	55% {
		transform: translateX(-30px) translateY(-100px) scale(0.8) rotate(360deg);
		opacity: 1;
	}
	100% {
		transform: translateX(0) translateY(0) scale(1) rotate(0deg);
		opacity: 1;
	}
}
.main_5 img {
	width: 13vw;
	height: auto;
	aspect-ratio: 65 / 102;
	object-fit: cover;
}

.main_play {
	display: flex;
	width: 24vw;
	height: 6vw;
	overflow: hidden;
	border-radius: 20%;
	position: absolute;
	top: 12vw;
	left: 20.6vw;
	clip-path: ellipse(50% 50% at center);
}
.main_play img {
	display: block;
	flex-shrink: 0;
	max-width: none;
	width: 120.2vw;
	height: 6vw;
	aspect-ratio: 601 / 30;
	object-fit: cover;
	position: relative;
	animation: marquee_3d 10s linear 4.9s infinite;
	transform: translate3d(118px, 0, -100px) rotateY(-30deg) scale(0.8);
}
@keyframes marquee_3d {
	0% {
		transform: translate3d(118px, 0, -100px) rotateY(-30deg) scale(0.8);
		opacity: 0.3;
	}
	30% {
		opacity: 1;
	}
	70% {
		opacity: 1;
	}
	100% {
		transform: translate3d(-601px, 0, -100px) rotateY(30deg) scale(0.8);
		opacity: 0.3;
	}
}

.main_lead {
	margin-bottom: 20px;
	margin-bottom: clamp(20px, 4vh, 50px);
	filter:
		drop-shadow(0 0 2px rgba(2, 16, 47, 0.7))
		drop-shadow(0 0 4px rgba(2, 16, 47, 0.7))
		drop-shadow(0 0 6px rgba(2, 16, 47, 0.8));

	font-weight: bold;
	font-size: 3.5vw;
	line-height: 1.8;
}

.main_marquee_wrap {
	height: 25.6vw;
	margin-top: 20px;
	transform: translateY(200%);
	position: relative;
	z-index: 1;
}
.hero-on .main_marquee_wrap {
	animation: marqueeSlideUp 0.6s ease-in-out forwards 0.0s;
}
@keyframes marqueeSlideUp {
	0% {
		transform: translateY(200%);
	}
	50% {
		transform: translateY(-10%);
	}
	100% {
		transform: translateY(0);
	}
}

.main_marquee {
	--speed: 0.6s;
	width: 100vw;
	height: 20.6vw;
	overflow: hidden;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 2;
	clip-path: inset(0 0 0 0);
	opacity: 1;
}

.main_marquee_img {
	display: flex;
	width: calc(233vw * 3);
	animation: marquee linear infinite 15s;
}

.main_marquee img {
	width: 233vw;
	height: 15.6vw;
	flex-shrink: 0;
}
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-233vw);
	}
}

#works {
	--slide-gap: 20px;
	overflow: hidden;
	padding-bottom: 15vw;
}
.works-title {
	margin-bottom: 8vw;
}
.works-title img {
	width: 85vw;
	height: auto;
	aspect-ratio: 401 / 139;
	object-fit: cover;
}
.works-desc {
	margin-bottom: 8vw;
	font-weight: 600;
	font-size: 3.6vw;
}
.slider-container {
	width: 100%;
	overflow: visible;
	margin: 10vw auto;
	position: relative;
}
.slider-fixed-frame {
	width: 130%;
	height: 72vw;
	background: url(images/top/works-light.svg) no-repeat center / contain;
	transform: translateX(-50%);
	position: absolute;
	bottom: -30vw;
	left: 50%;
	z-index: 1; 
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s ease;
}
#works.effected .slider-fixed-frame.is-active {
	opacity: 1;
}
.slider-track {
	display: flex;
	align-items: flex-start;
	will-change: transform;
	gap: 4vw;
}
.slide-item {
	width: 64%;
	flex-shrink: 0;
	text-align: left;
	color: #fff;
	z-index: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-item.active {
	opacity: 1;
	transform: scale(1);
}
.works-light-c {
	width: 64vw;
	height: 40vw;
	background: radial-gradient(ellipse at center, rgba(255,186,111,1) 30%, rgba(255,186,111,0.01) 100%);
	border-radius: 100%;
	filter: blur(6vw);
	transform: translateX(-50%);
	position: absolute;
	top: 0;
	left: 50%;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.works-light-c:before {
	content: '';
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(255,186,111,1) 30%, rgba(255,186,111,0.01) 100%);
	filter: blur(30px);
	position: absolute;
	top: 0;
	left: 0;
}
.works-light-c:after {
	content: '';
	width: 100%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(255,186,111,1) 30%, rgba(255,186,111,0.01) 100%);
	filter: blur(30px);
	position: absolute;
	top: 0;
	left: 0;
}
#works.effected .slide-item.active:not(.off) .works-light-c {
	opacity: 1;
	transition-delay: 0.2s;
}
#works.first-scroll .slide-item.active:not(.off) .works-light-c {
	transition-delay: 0.8s;
}
#works.first-scroll .slider-fixed-frame.is-active {
	transition-delay: 0.8s;
}

.slide-item.off .works-light-c {
	opacity: 0 !important;
	transition: opacity 0s ease 0s;
}
.slide-item figure {
	margin-bottom: 6vw;
	padding: 1vw;
	background: #fff;
	clip-path: polygon(
		0 5px, 5px 5px, 5px 0,
		calc(100% - 5px) 0, calc(100% - 5px) 5px, 100% 5px,
		100% calc(100% - 5px), calc(100% - 5px) calc(100% - 5px), calc(100% - 5px) 100%,
		5px 100%, 5px calc(100% - 5px), 0 calc(100% - 5px)
	);
}
.slide-item figure img {
	clip-path: polygon(
		0 5px, 5px 5px, 5px 0,
		calc(100% - 5px) 0, calc(100% - 5px) 5px, 100% 5px,
		100% calc(100% - 5px), calc(100% - 5px) calc(100% - 5px), calc(100% - 5px) 100%,
		5px 100%, 5px calc(100% - 5px), 0 calc(100% - 5px)
	);
	width: 100%;
	aspect-ratio: 621 / 401;
	object-fit: cover;
	display: block;
}
.slide-item .label {
	height: 7.6vw;
	padding: 0 1.2em;
	background: var(--blue);
	clip-path: polygon( 0 5px, 5px 5px, 5px 0, calc(100% - 5px) 0, calc(100% - 5px) 5px, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 5px calc(100% - 5px), 0 calc(100% - 5px) );
	font-weight: bold;
	font-size: 3.2vw;
	line-height: 7.2vw;
	color: #fff;
	position: absolute;
	top: 38vw;
	left: 4vw;
}
.slide-item .title {
	margin: 0 4vw 4.2vw;
	font-weight: bold;
	font-size: 4vw;
	line-height: 1.6;
}
.slide-item .title a{
	color: #FFFFFF;
	text-decoration: none;	
}
.slide-item .tag {
	display: flex;
	gap: 2vw;
	margin: 0 4vw;
	flex-wrap: wrap; 
}
.slide-item .tag span {
	height: 6.8vw;
	padding: 0 1.2em;
	border-radius: 6.8vw;
	background: #fff;
	font-weight: bold;
	font-size: 2.8vw;
	line-height: 6.8vw;
	color: var(--navy);
}
.nav-btn {
	width: 10vw;
	height: 10vw;
	border: 0;
	border-radius: 100%;
	background: transparent;
	position: absolute;
	top: 17vw;
	z-index: 10;
}
.nav-btn img {
	width: 10vw;
	height: 10vw;
}
.prev { left: 11vw; }
.next { right: 11vw; }
.next img {
	transform: rotate(180deg);
}
.nav-btn:active {
	transform: scale(0.95);
}
.works-ill {
	overflow: hidden;
	margin-bottom: 7vw;
	position: relative;
	z-index: 1;
}
.works-ill img {
	width: 100%;
	height: auto;
	aspect-ratio: 527 / 88;
	object-fit: cover;
}
#top-service {
	overflow: hidden;
	padding: 5vw 7.2vw 20vw;
}
.service-title {
	margin-bottom: 8vw;
	padding-top: 5px;
}
.service-title img {
	width: 37.8vw;
	height: auto;
	aspect-ratio: 189 / 83;
	object-fit: cover;
}
.service-desc {
	margin-bottom: 8vw;
	font-weight: 600;
	font-size: 3.6vw;
}
.service-card {
	position: relative;
	z-index: 0;
	opacity: 0;
	transform: scale(0.5);
	transition: 
		opacity .4s cubic-bezier(0.215, 0.61, 0.355, 1) .2s,
		transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275) .2s;
}
.effected.service-card {
	opacity: 1;
	transform: scale(1);
}
.service-card:before {
	content: '';
	width: 100%;
	height: 100%;
	background: no-repeat 0 0 / 100% auto;
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.8))
		drop-shadow(0 0 8px rgba(0, 129, 204, 0.9));
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.card1 .service-card:before {
	background-image: url(images/top/service-card1.svg);
}
.card2 .service-card:before {
	background-image: url(images/top/service-card2.svg);
}
.card3 .service-card:before {
	background-image: url(images/top/service-card3.svg);
}
.card4 .service-card:before {
	background-image: url(images/top/service-card4.svg);
}
@media only screen and (min-width: 767px) {
	.effected.service-card:before {
		animation: led-flash-limit 1.7s ease-in-out infinite;
	}
}
.service-item {
	height: 71vw;
	padding: 6vw;
	text-align: left;
}
.service-card h3 {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 4vw;
	font-weight: 600;
	font-size: 5.6vw;
	line-height: 1;
}
.service-card h3 .num {
	width: 9.4vw;
	height: 3.1vw;
}
.service-card figure {
	margin-bottom: 3vw;
	padding: 5px;
	background: #fff;
	clip-path: polygon(
		0 5px, 5px 5px, 5px 0,
		calc(100% - 5px) 0, calc(100% - 5px) 5px, 100% 5px,
		100% calc(100% - 5px), calc(100% - 5px) calc(100% - 5px), calc(100% - 5px) 100%,
		5px 100%, 5px calc(100% - 5px), 0 calc(100% - 5px)
	);
}
.service-card figure img {
	width: 100%;
	height: 30vw;
	aspect-ratio: 368 / 160;
	object-fit: cover;
	clip-path: polygon(
		0 5px, 5px 5px, 5px 0,
		calc(100% - 5px) 0, calc(100% - 5px) 5px, 100% 5px,
		100% calc(100% - 5px), calc(100% - 5px) calc(100% - 5px), calc(100% - 5px) 100%,
		5px 100%, 5px calc(100% - 5px), 0 calc(100% - 5px)
	);
}
.service-card p {
	font-weight: 600;
	font-size: 3.6vw;
	letter-spacing: 0.05em;
	line-height: 1.5;
}
.service-ill {
	width: 12.8vw;
	height: 12.8vw;
	margin-bottom: 4vw;
	opacity: 0;
	transform: translateX(100vw);
	transition: .6s;
	transition-delay: .6s;
}
.card1 .service-ill,
.card3 .service-ill {
	transform: translateX(-100vw);
}
.effected .service-ill {
	opacity: 1;
}
.card1 .effected .service-ill {
	transform: translateX(53vw);
}
.card2 .effected .service-ill {
	transform: translateX(15vw) ;
}
.card3 .effected .service-ill {
	transform: translateX(42.6vw);
}
.card4 .effected .service-ill {
	transform: translateX(23vw) ;
}
.service-ill img {
	width: 12.8vw;
	height: 12.8vw;
	aspect-ratio: 64 / 64;
	object-fit: cover;
}
.service-ill .service-ill-x {
	animation: chokomaka-x 0.8s ease-in-out infinite alternate;
}
.effected .service-ill img {
	animation: chokomaka-rotate 0.8s ease-in-out infinite alternate;
}
@keyframes chokomaka-rotate {
	0% { transform: rotate(-1deg); }
	100% { transform: rotate(1deg); }
}
#about {
	overflow: hidden;
	padding: 10vw 0;
}
.about-title {
	margin-bottom: 8vw;
}
.about-title img {
	width: 85vw;
	height: auto;
	aspect-ratio: 425 / 140;
	object-fit: cover;
}
.about-desc {
	margin-bottom: 8vw;
}
.about-desc p {
	margin-bottom: 1.5em;
	font-weight: 600;
	font-size: 3.6vw;
}
#recruit {
	overflow: hidden;
	padding: 10vw 4.2vw 14vw;
}
.recruit-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8vw;
}
.recruit-ill {
	margin-top: 14vw;
	opacity: 0;
	transform: translateY(-100%);
}
.effected .recruit-ill {
	opacity: 1;
	transform: translateX(0) ;
	transition: .4s;
	transition-delay: .3s;
}
.recruit-ill-x {
	animation: chokomaka-x 0.8s ease-in-out infinite alternate;
}
.recruit-ill img {
	width: 15.2vw;
	height: auto;
	aspect-ratio: 76 / 125;
	object-fit: cover;
}
.recruit-balloon {
	width: 12.4vw;
	height: 39.4vw;
	font-weight: 600;
	font-size: 3.6vw;
	writing-mode: vertical-rl;
	line-height: 13.6vw;
	position: relative;
	z-index: 0;
}
.effected .recruit-balloon {
	animation: bounceIn 0.8s ease-out .5s backwards;
}
.recruit-balloon:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(images/top/recruit-balloon.svg) no-repeat 0 0 / 100% auto;
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.8))
		drop-shadow(0 0 8px rgba(0, 129, 204, 0.9));
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.recruit-header:hover .recruit-balloon:before {
	transform: scale(1.02);
	filter: var(--led-hover-filter);
}
@media only screen and (min-width: 767px) {
	.effected .recruit-balloon:before {
		animation: led-flash-limit 1.7s ease-in-out infinite;
	}
}

.recruit-title img {
	width: 62.6vw;
	height: auto;
	aspect-ratio: 313 / 195;
	object-fit: cover;
}
.recruit-desc {
	margin-bottom: 8vw;
}
.recruit-desc p {
	margin-bottom: 1.5em;
	font-weight: 600;
	font-size: 3.6vw;
}
#sns {
	overflow: hidden;
	padding: 20vw 7.6vw 13vw;
	position: relative;
	z-index: 0;
}
#sns:before {
	content: '';
	width: calc(100% - 15.2vw);
	height: calc(100% - 6vw);
	background: url(images/top/sns-bg.svg) no-repeat bottom / 100% auto;
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 0.8));
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 7.6vw;
	z-index: -1;
}
@media only screen and (min-width: 767px) {
	#sns:hover:before {
		filter: var(--led-hover-filter);
	}
	.effected#sns:before {
		animation: sns-flash 1.5s 0.1s ease-in-out infinite;
	}
}

@keyframes sns-flash {
	0%, 100% {
		filter: 
			drop-shadow(0 0 5px rgba(0, 129, 204, 0.8)) 
			drop-shadow(0 0 8px rgba(0, 129, 204, 0.9));
	}
	50% {
		filter: var(--led-hover-filter);
	}
}
.sns-it {
	margin-left: 10vw;
	margin-bottom: 6vw;
	text-align: left;
}
.sns-it img {
	width: 43.2vw;
	height: auto;
	aspect-ratio: 216 / 46;
	object-fit: cover;
}
.sns-it-balloon {
	display: block;
	width: 30.4vw;
	height: 12.4vw;
	margin-bottom: 2vw;
	text-align: center;
	font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
	font-weight: bold;
	font-size: 2.8vw;
	line-height: 11.0vw;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 0;
	transition: all 0.3s ease;
}
.sns-it-balloon:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(images/top/sns-it-balloon.svg) no-repeat 0 0 / 100% auto;
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 0.8));
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
@media only screen and (min-width: 767px) {
	#sns:hover .sns-it-balloon:before {
		transform: scale(1.04);
		filter: var(--led-hover-filter);
	}
	.effected .sns-it-balloon:before {
		animation: led-flash-limit 1.7s ease-in-out infinite;
	}
}

.sns-it-ill-x {
	animation: chokomaka-x 0.8s ease-in-out infinite alternate;
}
.sns-mi {
	width: 23vw;
	text-align: right;
	font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
	font-weight: 600;
	font-size: 2.8vw;
	line-height: 10.6vw;
	letter-spacing: 0.05em;
	position: absolute;
	top: 15vw;
	right: 15.6vw;
	z-index: 0;
	transition: all 0.3s ease;
}
.sns-mi img {
	width: 19.2vw;
	height: auto;
	aspect-ratio: 96 / 130;
	object-fit: cover;
}
.sns-mi-balloon {
	display: block;
	width: 23.6vw;
	height: 12.4vw;
	margin-bottom: 2vw;
	text-align: center;
	font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
	font-weight: bold;
	font-size: 2.8vw;
	line-height: 11.2vw;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 0;
	transition: all 0.3s ease;
}
.sns-mi-balloon:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(images/top/sns-mi-balloon.svg) no-repeat 0 0 / 100% auto;
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 0.8));
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
@media only screen and (min-width: 767px) {
	#sns:hover .sns-mi-balloon:before {
		transform: scale(1.04);
		filter: var(--led-hover-filter);
	}
	.effected .sns-mi-balloon:before {
		animation: led-flash-limit 1.7s 0.2s ease-in-out infinite;
	}
}

.sns-mi-ill {
	animation: chokomaka-y 1.8s 0.2s ease-in-out infinite alternate;
}
.sns-mi-ill-x {
	animation: chokomaka-x 1.2s 0.2s ease-in-out infinite alternate;
}
.sns-header {
	width: 71.2vw;
	height: 30.8vw;
	margin: 0 auto 4vw;
	text-align: left;
	position: relative;
}
.sns-title img {
	width: 61.4vw;
	height: auto;
	aspect-ratio: 307 / 149;
	object-fit: cover;
}
.sns-logo {
	width: 33.6vw;
	height: 10vw;
	position: absolute;
	bottom: 0;
	right: 0;
}
.sns-logo a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: #1af7fb;
}
.sns-logo-ill img {
	transition: .4s;
}
.sns-logo-balloon {
	display: block;
	width: 22.4vw;
	height: 8.6vw;
	padding-left: 4.4vw;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 2.6vw;
	line-height: 8.6vw;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 0;
	transition: all 0.3s ease;
}
@media only screen and (min-width: 767px) {
	.sns-logo a:hover .sns-logo-balloon {
		filter:
			drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
			drop-shadow(0 0 7px rgba(0, 129, 204, 1.0));
	}
	.effected .sns-logo .sns-logo-txt {
		animation: sns-logo-flash 1.5s 0.1s ease-in-out infinite;
	}
}

@keyframes sns-logo-flash {
	0%, 100% {
	filter: none;
	}
	50% {
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 1.0));
	}
}
.sns-logo-balloon:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(images/top/sns-logo-balloon.svg) no-repeat 0 0 / 100% auto;
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 0.8));
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.sns-logo a:hover .sns-logo-balloon:before {
	transform: scale(1.05);
	filter:
		drop-shadow(0 0 0 rgba(0, 129, 204, 0.8));
}
.effected .sns-logo .sns-logo-balloon:before {
	animation: sns-logo-balloon 1.5s 0.1s ease-in-out infinite;
}
@keyframes sns-logo-balloon {
	0%, 100% {
	transform: scale(1.0);
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 0.8));
	}
	50% {
	transform: scale(1.01);
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 1.0));
	}
}
.sns-desc p {
	width: 71.2vw;
	margin: 0 auto 4vw;
	text-align: left;
	font-weight: 600;
	font-size: 3.6vw;
	line-height: 1.6;
}
.sns-photo img {
	width: 71.2vw;
	height: auto;
	aspect-ratio: 356 / 541;
	object-fit: cover;
}

@media only screen and (min-width: 1260px) {
	#hero {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100svh;
		min-height: 780px;
	}
	.main_astro_wrap {
		width: 337px;
		height: 446px;
		margin-bottom: clamp(10px, 4svh, 60px);
	}
	.main_astro {
		left: 14px;
	}
	.main_astro img {
		width: 266px;
	}
	.main_1 {
		top: 318px;
	}
	.main_1 img {
		width: 338px;
	}
	.main_2 {
		top: 332px;
		left: 45px;
	}
	.main_2 img {
		width: 246px;
	}
	.main_3 {
		top: 411px;
		left: 75px;
	}
	.main_3 img {
		width: 193px;
	}
	.main_4 {
		top: 40px;
		left: 7px;
	}
	.main_4a {
		width: 42px;
	}
	.main_5 {
		top: 263px;
		left: 215px;
	}
	.main_5 img {
		width: 65px;
	}
	.main_play {
		width: 118px;
		height: 30px;
		top: 58px;
		left: 104px;
	}
	.main_play img {
		width: 601px;
		height: 30px;
	}
	.main_lead {
		margin-bottom: clamp(20px, 4svh, 60px);
		font-size: 18px;
		line-height: 1.5;
	}
	.main_marquee_wrap {
		height: 98px;
		margin-top: clamp(20px, 9vh, 90px);
		transform: translateY(198px);
	}
	.main_marquee {
		--speed: 0.3s;
		height: 78px;
		opacity: 1;
		visibility: visible;
		transition: 
			opacity var(--speed) cubic-bezier(0.7, 0, 0.5, 1),
			visibility var(--speed) cubic-bezier(0.7, 0, 0.5, 1);
	}
	.is-scrolled .main_marquee {
		opacity: 0;
		visibility: hidden;
	}
	.main_marquee_img {
		width: calc(1165px * 3);
	}
	.main_marquee img {
		width: 1165px;
		height: 78px;
	}
	@keyframes marquee {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-1165px);
		}
	}
	#works {
		padding-bottom: 120px;
	}
	.works-title {
		margin-bottom: 40px;
	}
	.works-title img {
		width: 401px;
	}
	.works-desc {
		margin-bottom: 40px;
		font-size: 18px;
	}
	.slider-container {
		margin: 50px auto;
	}
	.slider-fixed-frame {
		width: 590px;
		height: 378px;
		bottom: -150px;
	}
	.slider-track {
		gap: 20px;
	}
	.works-light-c {
		width: 300px;
		height: 220px;
		filter: blur(30px);
		top: 0;
	}
	.works-light-c:before {
		filter: blur(30px);
	}
	.works-light-c:after {
		filter: blur(30px);
	}
	.slide-item figure {
	margin-bottom: 30px;
	padding: 5px;
	box-sizing: border-box;
	}
	.slide-item figure img {
		width: 310px;
	height: auto;
	aspect-ratio: 621 / 401;
	object-fit: cover;
	}
	.slide-item .label {
		height: 38px;
		font-size: 16px;
		line-height: 36px;
		top: 190px;
		left: 20px;
	}
	.slide-item .title {
		margin: 0 20px 15px;
		font-size: 20px;
	}
	.slide-item .tag {
		gap: 10px;
		margin: 0 20px;
	}
	.slide-item .tag span {
		height: 34px;
		border-radius: 34px;
		font-size: 12px;
		line-height: 34px;
	}
	.nav-btn {
		width: 50px;
		height: 50px;
		top: 80px;
		cursor: pointer;
		transition: .4s;
	}
	.prev { left: 55px; }
	.next { right: 55px; }
	.prev:hover {
		transform: translateX(-4px);
	}
	.next:hover {
		transform: translateX(4px);
	}
	.nav-btn img {
		width: 50px;
		height: 50px;
	}
	.works-ill {
		margin-bottom: 35px;
	}
	.works-ill img {
		width: 527px;
		height: 88px;
	}
	#top-service {
		overflow: hidden;
		padding: 0 36px 40px;
	}
	.service-title {
		margin-bottom: 40px;
	}
	.service-title img {
		width: 189px;
		height: 83px;
	}
	.service-desc {
		margin-bottom: 40px;
		font-size: 18px;
	}
	.service-item {
		height: 355px;
		padding: 30px;
	}
	.service-card h3 {
		gap: 15px;
		margin-bottom: 20px;
		font-weight: 600;
		font-size: 28px;
	}
	.service-card h3 .num {
		width: 47px;
		height: 15px;
	}
	.service-card figure {
		margin-bottom: 15px;
		padding: 5px;
	}
	.service-card figure img {
		width: 370px;
		height: 150px;
	}
	.service-card p {
		font-size: 18px;
	}
	.service-ill {
		width: 64px;
		height: 64px;
		margin-bottom: 20px;
	}
	.service-ill img {
		width: 64px;
		height: 64px;
	}
	.card1 .effected .service-ill {
		transform: translateX(264px);
	}
	.card2 .effected .service-ill {
		transform: translateX(76px) ;
	}
	.card3 .effected .service-ill {
		transform: translateX(213px);
	}
	.card4 .effected .service-ill {
		transform: translateX(115px) ;
	}
	#about {
		overflow: hidden;
		padding: 40px 0;
	}
	.about-title {
		margin-bottom: 40px;
	}
	.about-title img {
		width: 425px;
		height: 140px;
	}
	.about-desc {
		margin-bottom: 40px;
	}
	.about-desc p {
		font-size: 18px;
	}
	#recruit {
		overflow: hidden;
		padding: 90px 21px 50px;
	}
	.recruit-header {
		margin-bottom: 40px;
	}
	.recruit-ill {
		margin-top: 70px;
	}
	.recruit-ill img {
		width: 76px;
		height: 125px;
	}
	.recruit-balloon {
		width: 62px;
		height: 197px;
		font-size: 18px;
		line-height: 68px;
	}
	.recruit-header:hover .recruit-balloon:before {
		transform: scale(1.02);
		filter: var(--led-hover-filter);
	}
	.recruit-title img {
		width: 313px;
		height: 195px;
	}
	.recruit-desc {
		margin-bottom: 40px;
	}
	.recruit-desc p {
		font-size: 18px;
	}
	#sns {
		padding: 75px 38px 54px;
	}
	#sns:before {
		width: calc(100% - 76px);
		height: calc(100% - 20px);
		left: 38px;
	}
	.sns-it {
		margin-left: 50px;
		margin-bottom: 30px;
	}
	.sns-it img {
		width: 216px;
		height: 46px;
	}
	.sns-it-balloon {
		width: 152px;
		height: 62px;
		margin-bottom: 10px;
		font-size: 18px;
		line-height: 53px;
	}
	.sns-mi {
		width: 115px;
		font-size: 18px;
		line-height: 53px;
		top: 48px;
		right: 78px;
	}
	.sns-mi img {
		width: 96px;
		height: 130px;
	}
	.sns-mi-balloon {
		width: 115px;
		height: 62px;
		margin-bottom: 10px;
		font-size: 18px;
		line-height: 48px;
	}
	.sns-header {
		width: 356px;
		height: 154px;
		margin: 0 auto 20px;
	}
	.sns-title img {
		width: 307px;
		height: 149px;
	}
	.sns-logo {
		width: 168px;
		height: 50px;
	}
	.sns-logo a:hover .sns-logo-ill img {
		animation: vibrate 0.1s linear infinite;
	}
	.sns-logo-balloon {
		width: 112px;
		height: 43px;
		padding-left: 22px;
		font-size: 13px;
		line-height: 43px;
	}
	.sns-logo a:hover .sns-logo-balloon {
		filter:
			drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
			drop-shadow(0 0 7px rgba(0, 129, 204, 1.0));
	}
	.sns-logo a:hover .sns-logo-balloon:before {
		transform: scale(1.05);
		filter:
			drop-shadow(0 0 0 rgba(0, 129, 204, 0.8));
	}
	.sns-desc p {
		width: 356px;
		margin: 0 auto 20px;
		font-size: 18px;
	}
	.sns-photo img {
		width: 356px;
		height: 541px;
	}
	.illust_14 {
		width: 61px;
		height: 41px;
		margin-left: -30.9278vw;
		position: absolute;
		top: 440px;
		left: 50%;
		z-index: 1;
		animation: 
			ufo-random-move 2s infinite ease-in-out,
			ufo-glow 2s infinite ease;
	}
	@keyframes ufo-random-move {
		0%, 100% {
			transform: translate(0, 0);
		}
		50% {
			transform: translate(10px, 0);
		}
	}
	@keyframes ufo-glow {
		0%, 100% {
			filter: brightness(1) drop-shadow(0 0 0px rgba(0, 255, 255, 0));
		}
		50% {
			filter: brightness(1.3) drop-shadow(0 0 8px rgba(0, 255, 255, 0.8));
		}
	}
	.illust_14-x {
		animation: 
			illust_14-x 2s infinite ease-in-out -0.5s;
	}
	@keyframes illust_14-x {
		0%, 100% {
			transform: translate(0, 0);
		}
		50% {
			transform: translate(0, 10px);
		}
	}
	.illust_14-rotate {
		animation: illust_14-rotate 24s infinite linear;
	}
	@keyframes illust_14-rotate {
		0% {
			transform: translateX(0) scale(1);
			opacity: 0; 
		}
		2.33% { 
			transform: translateX(0) scale(1);
			opacity: 1;
		}
		14.00% { 
			transform: translateX(0) scale(1);
			opacity: 1;
			animation-timing-function: ease-in;
		}
		15.42% { 
			transform: translateX(30vw) scale(0.5);
			opacity: 0; 
		}
		24.99% { 
			transform: translateX(30vw) scale(0.5);
			opacity: 0;
		}
		25% { 
			transform: translateX(0) scale(1);
			opacity: 0; 
		}
		27.33% { 
			transform: translateX(0) scale(1);
			opacity: 1;
		}
		39.00% { 
			transform: translateX(0) scale(1);
			opacity: 1;
			animation-timing-function: ease-in;
		}
		40.42% { 
			transform: translateX(30vw) scale(0.5);
			opacity: 0;
		}
		49.99% { 
			transform: translateX(30vw) scale(0.5);
			opacity: 0;
		}
		50% { 
			transform: translateX(0) scale(1);
			opacity: 0;
		}
		52.33% { 
			transform: translateX(0) scale(1);
			opacity: 1;
		}
		64.00% { 
			transform: translateX(0) scale(1);
			opacity: 1;
			animation-timing-function: ease-in;
		}
		65.42% { 
			transform: translateX(30vw) scale(0.5);
			opacity: 0;
		}
		74.99% { 
			transform: translateX(30vw) scale(0.5);
			opacity: 0;
		}
		75% { 
			transform: translateX(0) scale(1);
			opacity: 0;
		}
		77.33% { 
			transform: translateX(0) scale(1);
			opacity: 1;
		}
		89.00% { 
			transform: translateX(0) scale(1);
			opacity: 1;
			animation-timing-function: ease-in;
		}
		90.42% { 
			transform: translateX(30vw) scale(0.5);
			opacity: 0;
		}
		100% { 
			transform: translateX(30vw) scale(0.5);
			opacity: 0;
		}
	}
	.illust_14-y {
		animation: illust_14-y 24s infinite linear;
	}
	@keyframes illust_14-y {
		0% {
			transform: translate(0, 0);
		}
		24.99% {
			transform: translate(0, 0);
		}
		25% {
			transform: translate(-5.5511vw, -450px);
		}
		49.99% {
			transform: translate(-5.5511vw, -450px);
		}
		50% {
			transform: translate(55.5115vw, 190px);
		}
		74.99% {
			transform: translate(55.5115vw, 190px);
		}
		75% {
			transform: translate(63.4417vw, -470px);
		}
		100% {
			transform: translate(63.4417vw, -470px);
		}
	}
}

@media only screen and (min-width: 767px) and (max-width: 1259px) {
	#hero {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100svh;
		min-height: 61.9048vw;
	}
	.main_astro_wrap {
		width: 26.82539682539683vw;
		height: 37.53968253968254vw;
		margin-bottom: clamp(0.7937vw, 4svh, 4.7619vw);
	}
	.main_astro {
		left: 1.11111111111111vw;
	}
	.main_astro img {
		width: 21.11111111111111vw;
	}
	.main_1 {
		top: 25.23809523809524vw;
	}
	.main_1 img {
		width: 26.82539682539683vw;
	}
	.main_2 {
		top: 26.34920634920635vw;
		left: 3.57142857142857vw;
	}
	.main_2 img {
		width: 19.52380952380952vw;
	}
	.main_3 {
		top: 32.61904761904762vw;
		left: 5.95238095238095vw;
	}
	.main_3 img {
		width: 15.31746031746032vw;
	}
	.main_4 {
		top: 3.17460317460317vw;
		left: 0.55555555555556vw;
	}
	.main_4a {
		width: 3.33333333333333vw;
	}
	.main_5 {
		top: 20.87301587301587vw;
		left: 17.06349206349206vw;
	}
	.main_5 img {
		width: 5.15873015873016vw;
	}
	.main_play {
		width: 9.3651vw;
		height: 2.381vw;
		top: 4.6032vw;
		left: 8.254vw;
	}
	.main_play img {
		width: 47.6984vw;
		height: 2.381vw;
	}
	.main_lead {
		margin-bottom: 1.5873vw;
		margin-bottom: clamp(1.5873vw, 4svh, 4.7619vw);
		filter:
			drop-shadow(0 0 0.1587vw rgba(2, 16, 47, 0.7))
			drop-shadow(0 0 0.3175vw rgba(2, 16, 47, 0.7))
			drop-shadow(0 0 0.4762vw rgba(2, 16, 47, 0.8));
		font-weight: bold;
		font-size: 1.4286vw;
		line-height: 1.5;
	}
	.main_marquee_wrap {
		height: 7.7778vw;
		margin-top: 1.5873vw;
		margin-top: clamp(1.5873vw, 6svh, 7.1429vw);
		transform: translateY(15.7143vw);
		position: relative;
		z-index: 1;
	}
	.main_marquee {
		--speed: 0.95s;
		height: 6.1905vw;
		transition: clip-path var(--speed) cubic-bezier(0.7, 0, 0.5, 1);
	}
	.is-scrolled .main_marquee {
		clip-path: inset(0 100% 0 0);
	}
	.main_marquee_img {
		display: flex;
		width: calc(92.4603vw * 3);
		animation: marquee linear infinite 15s;
	}
	.main_marquee img {
		width: 92.4603vw;
		height: 6.1905vw;
		flex-shrink: 0;
	}
	@keyframes marquee_3d {
		0% {
			transform: translate3d(9.3651vw, 0, -7.9365vw) rotateY(-30deg) scale(0.8);
			opacity: 0.3;
		}
		30% {
			opacity: 1;
		}
		70% {
			opacity: 1;
		}
		100% {
			transform: translate3d(-47.6984vw, 0, -7.9365vw) rotateY(30deg) scale(0.8);
			opacity: 0.3;
		}
	}
	@keyframes marquee {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(-92.4603vw);
		}
	}
	#works {
		padding-bottom: 9.5238vw;
	}
	.works-title {
		margin-bottom: 3.1746vw;
	}
	.works-title img {
		width: 31.8254vw;
	}
	.works-desc {
		margin-bottom: 3.1746vw;
		font-size: 1.4286vw;
	}
	.slider-container {
		margin: 3.9683vw auto;
	}
	.slider-fixed-frame {
		width: 46.8254vw;
		height: 30.0vw;
		bottom: -11.90476vw;
	}
	.slider-track {
		gap: 1.5873vw;
	}
	.works-light-c {
		width: 23.8095vw;
		height: 17.4603vw;
		filter: blur(2.381vw);
		top: 0;
	}
	.works-light-c:before {
		filter: blur(2.381vw);
	}
	.works-light-c:after {
		filter: blur(2.381vw);
	}
	.slide-item figure {
		margin-bottom: 2.381vw;
		padding: 0.3968vw;
	}
	.slide-item figure img {
		width: 24.6032vw;
		height: 15.873vw;
	}
	.slide-item .label {
		height: 3.0159vw;
		font-size: 1.2698vw;
		line-height: 2.8571vw;
		top: 15.0794vw;
		left: 1.5873vw;
	}
	.slide-item .title {
		margin: 0 1.5873vw 1.1905vw;
		font-size: 1.5873vw;
	}
	.slide-item .tag {
		gap: 0.7937vw;
		margin: 0 1.5873vw;
	}
	.slide-item .tag span {
		height: 2.6984vw;
		border-radius: 2.6984vw;
		font-size: 1.1111vw;
		line-height: 2.6984vw;
	}
	.nav-btn {
		width: 3.9683vw;
		height: 3.9683vw;
		top: 6.3492vw;
		cursor: pointer;
		transition: .4s;
	}
	.prev { left: 4.3651vw; }
	.next { right: 4.3651vw; }
	.prev:hover {
		transform: translateX(-0.3175vw);
	}
	.next:hover {
		transform: translateX(0.3175vw);
	}
	.nav-btn img {
		width: 3.9683vw;
		height: 3.9683vw;
	}
	.works-ill {
		margin-bottom: 2.7778vw;
	}
	.works-ill img {
		width: 41.8254vw;
		height: 6.9841vw;
	}
	#top-service {
		overflow: hidden;
		padding: 0 2.8571vw 3.1746vw;
	}
	.service-title {
		margin-bottom: 3.1746vw;
	}
	.service-title img {
		width: 15.0vw;
		height: 6.5873vw;
	}
	.service-desc {
		margin-bottom: 3.1746vw;
		font-size: 1.4286vw;
	}
	.service-card {
		margin-bottom: 1.5873vw;
	}
	.service-item {
		height: 28.1746vw;
		padding: 2.381vw;
	}
	.service-card h3 {
		gap: 1.1905vw;
		margin-bottom: 1.5873vw;
		font-weight: 600;
		font-size: 2.2222vw;
	}
	.service-card h3 .num {
		width: 3.7302vw;
		height: 1.1905vw;
	}
	.service-card figure {
		margin-bottom: 1.1905vw;
		padding: 0.3968vw;
	}
	.service-card figure img {
		width: 29.3651vw;
		height: 11.9048vw;
	}
	.service-card p {
		font-size: 1.4286vw;
	}
	.service-ill {
		width: 5.0794vw;
		height: 5.0794vw;
	}
	.service-ill img {
		width: 5.0794vw;
		height: 5.0794vw;
	}
	.card1 .effected .service-ill {
		transform: translateX(20.9524vw);
	}
	.card2 .effected .service-ill {
		transform: translateX(6.0317vw) ;
	}
	.card3 .effected .service-ill {
		transform: translateX(16.9048vw);
	}
	.card4 .effected .service-ill {
		transform: translateX(9.127vw) ;
	}
	#about {
		overflow: hidden;
		padding: 3.1746vw 0;
	}
	.about-title {
		margin-bottom: 3.1746vw;
	}
	.about-title img {
		width: 33.7302vw;
	}
	.about-desc {
		margin-bottom: 3.1746vw;
	}
	.about-desc p {
		font-size: 1.4286vw;
	}
	#recruit {
		overflow: hidden;
		padding: 7.1429vw 1.6667vw 3.9683vw;
	}
	.recruit-header {
		margin-bottom: 3.1746vw;
	}
	.recruit-ill {
		margin-top: 5.5556vw;
	}
	.recruit-ill img {
		width: 6.0317vw;
		height: 9.9206vw;
	}
	.recruit-balloon {
		width: 4.9206vw;
		height: 15.6349vw;
		font-size: 1.4286vw;
		line-height: 5.3968vw;
	}
	.recruit-header:hover .recruit-balloon:before {
		transform: scale(1.02);
		filter: var(--led-hover-filter);
	}
	.recruit-title img {
		width: 24.8413vw;
		height: 15.4762vw;
	}
	.recruit-desc {
		margin-bottom: 3.1746vw;
	}
	.recruit-desc p {
		font-size: 1.4286vw;
	}
	#sns {
		padding: 5.9524vw 3.0159vw 4.2857vw;
	}
	#sns:before {
		width: calc(100% - 6.0317vw);
		height: calc(100% - 1.5873vw);
		left: 3.0159vw;
	}
	.sns-it {
		margin-left: 3.9683vw;
		margin-bottom: 2.381vw;
	}
	.sns-it img {
		width: 17.1429vw;
		height: 3.6508vw;
	}
	.sns-it-balloon {
		width: 12.0635vw;
		height: 4.9206vw;
		margin-bottom: 0.7937vw;
		font-size: 1.4286vw;
		line-height: 4.2063vw;
	}
	.sns-mi {
		width: 9.127vw;
		font-size: 1.4286vw;
		line-height: 4.2063vw;
		top: 3.8095vw;
		right: 6.1905vw;
	}
	.sns-mi img {
		width: 7.619vw;
		height: 10.3175vw;
	}
	.sns-mi-balloon {
		width: 9.127vw;
		height: 4.9206vw;
		margin-bottom: 0.7937vw;
		font-size: 1.4286vw;
		line-height: 3.8095vw;
	}
	.sns-header {
		width: 28.254vw;
		height: 12.2222vw;
		margin: 0 auto 1.5873vw;
	}
	.sns-title img {
		width: 24.3651vw;
		height: 11.8254vw;
	}
	.sns-logo {
		width: 13.3333vw;
		height: 3.9683vw;
	}
	.sns-logo a:hover .sns-logo-ill img {
		animation: vibrate 0.1s linear infinite;
	}
	.sns-logo-balloon {
		width: 8.8889vw;
		height: 3.4127vw;
		padding-left: 1.27vw;
		font-size: 1.0317vw;
		line-height: 3.4127vw;
	}
	.sns-logo a:hover .sns-logo-balloon {
		filter:
			drop-shadow(0 0 0.3968vw rgba(0, 129, 204, 0.9))
			drop-shadow(0 0 0.5556vw rgba(0, 129, 204, 1.0));
	}
	.sns-logo a:hover .sns-logo-balloon:before {
		transform: scale(1.05);
		filter:
			drop-shadow(0 0 0vw rgba(0, 129, 204, 0.8));
	}
	.sns-desc p {
		width: 28.254vw;
		margin: 0 auto 1.5873vw;
		font-size: 1.4286vw;
	}
	.sns-photo img {
		width: 28.254vw;
		height: 42.9365vw;
	}
}

/* ---------------------------------------------------------
	CSS Document page-title
--------------------------------------------------------- */

#page-title {
	--title-yohaku: 90px;
	overflow: hidden;
	padding-top: var(--title-yohaku);
	padding-bottom: var(--title-yohaku);
	position: relative;
}
.page-title-illust_07a {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 76px;
	left: 50px;
	animation: star-pulsate 3s ease-in-out infinite -1s;
}
.page-title-illust_07b {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 426px;
	left: 422px;
	animation: star-pulsate 3s ease-in-out infinite 1s;
}
.page-title-illust_05 {
	width: 17px;
	aspect-ratio: 17 / 16;
	object-fit: cover;
	position: absolute;
	top: 170px;
	left: 406px;
	animation: star-pulsate 2s ease-in-out infinite;
}
.page-title-illust_16 {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 240px;
	left: 265px;
	opacity: 0.15;
	transform: scale(0.6);
	animation: star-mini 3s ease-in-out infinite -1.6s;
}
.page-title-illust_17 {
	width: 15px;
	aspect-ratio: 15 / 15;
	object-fit: cover;
	position: absolute;
	top: 318px;
	left: 130px;
	opacity: 0.15;
	transform: scale(0.6);
	animation: star-mini 3s ease-in-out infinite;
}
.page-title-illust_18 {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 410px;
	left: 170px;
	animation: star-pulsate 2s ease-in-out infinite 0.5s;
}
.page-title-illust_14 {
	position: absolute;
	top: 228px;
	left: 60px;
	transform: translateX(-20vw);
	transition: .9s;
	transition-delay: .3s;
	opacity: 0;
}
.effected .page-title-illust_14 {
	transform: translateX(0);
	opacity: 1;
}
.page-title-illust_14 img {
	width: 61px;
	aspect-ratio: 61 / 41;
	object-fit: cover;
}
.page-title-illust_14-x {
	animation: ufoFloatX 4s ease-in-out infinite;
}
@keyframes ufoFloatX {
	0%	 { transform: translateX(0); }
	25%	{ transform: translateX(6px); }
	50%	{ transform: translateX(0); }
	75%	{ transform: translateX(-6px); }
	100% { transform: translateX(0); }
}
.page-title-illust_14-y {
	animation: ufoFloatY 3.2s ease-in-out infinite;
}
@keyframes ufoFloatY {
	0%	 { transform: translateY(0); }
	50%	{ transform: translateY(-10px); }
	100% { transform: translateY(0); }
}
.page-title-illust_14-rotate {
	animation: ufoRotate 6s ease-in-out infinite;
}
@keyframes ufoRotate {
	0%	 { transform: rotate(0deg); }
	50%	{ transform: rotate(3deg); }
	100% { transform: rotate(0deg); }
}
.effected .page-title-illust_14::after {
	opacity: 1;
}
.page-title-illust_14::after {
	content: "";
	width: 70px;
	height: 90px;
	position: absolute;
	top: -85px;
	left: 10px;
	z-index: -1;
	transform: rotate(45deg) scaleY(0);
	transform-origin: bottom center;
	background: linear-gradient(
		to top,
		rgba(118, 153, 251, 0.6) 0%,
		rgba(118, 153, 251, 0.3) 40%,
		rgba(118, 153, 251, 0.05) 100%
	);
	clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
	filter: blur(10px);
	opacity: 0;
	animation: ufoBeam 7.0s ease-in-out infinite;
}
@keyframes ufoBeam {
	0% {
		transform: rotate(45deg) scaleY(0);
		opacity: 0;
	}
	30% {
		transform: rotate(45deg) scaleY(0);
		opacity: 0;
	}
	35% {
		transform: rotate(45deg) scaleY(1.05);
		opacity: 1;
	}
	65% {
		transform: rotate(45deg) scaleY(1.05);
		opacity: 1;
	}
	70% {
		transform: rotate(45deg) scaleY(1.05);
		opacity: 0;
	}
	100% {
		transform: rotate(45deg) scaleY(1.05);
		opacity: 0;
	}
}
#page-title h2 {
	margin-bottom: var(--title-yohaku);
}
.page-title-comment {
	margin-right: 60px;
	text-align: right;
}
.page-title-comment .title-effect {
	transition-delay: 0.5s;
}
.page-title-balloon {
	display: inline-block;
	vertical-align: top;
	height: 62px;
	margin-bottom: 5px;
	padding: 0 1.2em;
	text-align: center;
	font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
	font-weight: bold;
	font-size: 12px;
	line-height: 53px;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 0;
	transition: all 0.3s ease;
}
.page-title-bg {
	width: 100%;
	height: 62px;
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 0.8));
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
@media only screen and (min-width: 1260px) {
	.page-title-bg {
		animation: led-flash-limit 1.7s ease-in-out infinite;
	}
}
.page-title-bg:before {
	content: '';
	width: 40%;
	height: 100%;
	background: url(images/service/page-title-balloon-left.svg) no-repeat left top / auto 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.page-title-bg:after {
	content: '';
	width: 60%;
	height: 100%;
	background: url(images/service/page-title-balloon-right.svg) no-repeat right top / auto 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.page-title-ill {
	margin-right: 24px;
}
.page-title-ill-x {
	transform: translateX(20vw);
	transition: .6s;
	transition-delay: .1s;
	opacity: 0;
}
.effected .page-title-ill-x {
	transform: translateX(0);
	opacity: 1;
}
.page-title-ill img {
	width: 64px;
	aspect-ratio: 64 / 64;
	object-fit: cover;
	animation: chokomaka-x15 0.8s ease-in-out infinite alternate;
}
@keyframes chokomaka-x15 {
	0% { transform: translateX(-5px); }
	100% { transform: translateX(5px); }
}
@media only screen and (min-width: 767px) and (max-width: 1259px) {
	#page-title {
		--title-yohaku: 7.14285714285714vw; 
	}
	.page-title-illust_07a {
		width: 1.2698vw; 
		top: 6.0317vw;	 
		left: 3.9683vw;	
	}
	.page-title-illust_07b {
		width: 1.2698vw; 
		top: 33.8095vw;	
		left: 33.4921vw; 
	}
	.page-title-illust_05 {
		width: 1.3492vw; 
		top: 13.4921vw;	
		left: 32.2222vw; 
	}
	.page-title-illust_16 {
		width: 1.2698vw; 
		top: 19.0476vw;	
		left: 21.0317vw; 
	}
	.page-title-illust_17 {
		width: 1.1905vw; 
		top: 25.2381vw;	
		left: 10.3175vw; 
	}
	.page-title-illust_18 {
		width: 1.2698vw; 
		top: 32.5397vw;	
		left: 13.4921vw; 
	}
	.page-title-illust_14 {
		top: 18.0952vw;	
		left: 4.7619vw;	
	}
	.page-title-illust_14 img {
		width: 4.8413vw; 
	}
	.page-title-illust_14::after {
		width: 5.5556vw;	 
		height: 7.1429vw;	
		top: -6.7460vw;	
		left: 0.7937vw;	
	}
	.page-title-comment {
		margin-right: 4.7619vw; 
	}
	.page-title-balloon {
		height: 4.9206vw;		
		font-size: 1.1905vw;	 
		line-height: 4.2063vw; 
	}
	.page-title-bg {
		height: 4.9206vw; 
		filter:
			drop-shadow(0 0 0.3968vw rgba(0, 129, 204, 0.9))	
			drop-shadow(0 0 0.5556vw rgba(0, 129, 204, 0.8)); 
	}
	.page-title-ill {
		margin-right: 1.9048vw; 
	}
	.page-title-ill img {
		width: 5.0794vw; 
	}
}
@media only screen and (max-width: 766px) {
	#page-title {
		padding-top: 30vw;
	}
	.page-title-illust_07a {
		width: 3.2000vw; 
		top: 15.2000vw;	
		left: 10.0000vw; 
	}
	.page-title-illust_07b {
		width: 3.2000vw; 
		top: 85.2000vw;	
		left: 84.4000vw; 
	}
	.page-title-illust_05 {
		width: 3.4000vw; 
		top: 34.0000vw;	
		left: 81.2000vw; 
	}
	.page-title-illust_16 {
		width: 3.2000vw; 
		top: 48.0000vw;	
		left: 53.0000vw; 
	}
	.page-title-illust_17 {
		width: 3.0000vw; 
		top: 63.6000vw;	
		left: 26.0000vw; 
	}
	.page-title-illust_18 {
		width: 3.2000vw; 
		top: 82.0000vw;	
		left: 34.0000vw; 
	}
	.page-title-illust_14 {
	top: 55.6000vw;
    left: 10.0000vw;
	}
	.page-title-illust_14 img {
		width: 12.2000vw; 
	}
	.page-title-illust_14::after {
		width: 14.0000vw;	
		height: 18.0000vw; 
		top: -17.0000vw;	 
		left: 2.0000vw;	
	}
	.page-title-comment {
		margin-right: 12.0000vw; 
	}
	.page-title-balloon {
		height: 12.4000vw;	 
		font-size: 2.5vw; 
		line-height: 10.6000vw; 
	}
	.page-title-bg {
		height: 12.4000vw; 
		filter:
			drop-shadow(0 0 1.0000vw rgba(0, 129, 204, 0.9))	
			drop-shadow(0 0 1.4000vw rgba(0, 129, 204, 0.8)); 
	}
	.page-title-ill {
		margin-right: 4.8000vw; 
	}
	.page-title-ill img {
		width: 12.8000vw; 
	}
}

/* ---------------------------------------------------------
	CSS Document service
--------------------------------------------------------- */

#service-about {
	overflow: hidden;
	margin-bottom: 120px;
	position: relative;
}
#service-about h3 {
	margin-bottom: 50px;
	transition-delay: .6s;
}
#service-about .about-title1 {
	width: 249px;
	aspect-ratio: 249 / 101;
	object-fit: cover;
	margin-bottom: 30px;
}
#service-about .about-title2 {
	width: 321px;
	aspect-ratio: 321 / 104;
	object-fit: cover;
}
#service-about .about-astro-wrap {
	width: 270px;
	margin: 0 auto 35px;
	position: relative;
}
#service-about .about-astro {
	width: 187px;
	position: relative;
	transition-delay: .4s;
}
#service-about .about-astro .about-astro-img {
	width: 100%;
	height: auto;
	aspect-ratio: 187 / 275;
	object-fit: cover;
}
#service-about .about-astro .main_play {
	width: 80px;
	height: 22px;
	top: 46px;
	left: 70px;
}
#service-about .about-astro .main_play img {
	width: 442px;
	height: 22px;
	animation: service_marquee_3d 10s linear infinite;
	transform: translate3d(0, 0, -100px) rotateY(-30deg) scale(0.8);
}
@keyframes service_marquee_3d {
	0% {
		transform: translate3d(0, 0, -100px) rotateY(-30deg) scale(0.8);
		opacity: 0.3;
	}
	30% {
		opacity: 1;
	}
	70% {
		opacity: 1;
	}
	100% {
		transform: translate3d(-442px, 0, -100px) rotateY(30deg) scale(0.8);
		opacity: 0.3;
	}
}
#service-about .about-balloon {
	padding: 1em 1em 1em 1.5em;
	text-align: left;
	font-weight: bold;
	font-size: 15px;
	letter-spacing: 0.03em;
	line-height: 1.2;
	writing-mode: vertical-rl;
	position: absolute;
	top: 0;
	right: 0;
	transition-delay: .6s;
}
#service-about .about-balloon-bg {
	width: 100%;
	height: 100%;
	filter:
		drop-shadow(0 0 2px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 4px rgba(0, 129, 204, 0.8));
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
@media only screen and (min-width: 1260px) {
	#service-about .about-balloon-bg {
		animation: led-flash-limit 1.7s ease-in-out infinite;
	}
}
#service-about .about-balloon-bg:before {
	content: '';
	width: 100%;
	height: 100%;
	background: url(images/service/about-balloon.svg) no-repeat 0 0 / 100% 100%;
	transition: all 0.3s ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#service-about .service-about-desc {
	margin: 0 0 40px 60px;
	text-align: left;
	font-weight: bold;
	font-size: 15px;
	line-height: 3;
}
#service-about .service-about-ill-x {
	animation: chokomaka-x50 4.0s ease-in-out infinite alternate;
}
@keyframes chokomaka-x50 {
	0% { transform: translateX(-20%);}
	100% { transform: translateX(20%);}
}
.service-about-illust_18 {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 320px;
	left: 50px;
	animation: illust13-rotate 20s linear infinite;
}
.service-about-illust_07a {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 150px;
	left: 50px;
	animation: illust13-rotate 10s linear infinite;
}
.service-about-illust_19a {
	width: 12px;
	aspect-ratio: 12 / 12;
	object-fit: cover;
	position: absolute;
	top: 100px;
	left: 420px;
	animation: illust13-rotate 8s linear infinite;
}
.service-about-illust_17 {
	width: 15px;
	aspect-ratio: 15 / 15;
	object-fit: cover;
	position: absolute;
	top: 210px;
	left: 440px;
	opacity: 0.15;
	transform: scale(0.6);
	animation: star-mini 3s ease-in-out infinite;
}
.service-about-illust_19b {
	width: 12px;
	aspect-ratio: 12 / 12;
	object-fit: cover;
	position: absolute;
	top: 420px;
	left: 400px;
	animation: illust13-rotate 18s linear infinite -0.5s;
}
.service-about-illust_07b {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 510px;
	left: 60px;
	animation: star-pulsate 3s ease-in-out infinite -1s;
}
.service-about-illust_20 {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 510px;
	left: 410px;
	animation: star-pulsate 8s ease-in-out infinite -0.4s;
}
.service-about-illust_01 {
	width: 80px;
	position: absolute;
	top: 600px;
	left: 360px;
	z-index: 1;
	animation: star-satellite2 5s ease-in-out infinite -0.8s;
	transform: rotate(-45deg);
}
@keyframes star-satellite2 {
	0%, 100% { transform: translateX(0) rotate(-15deg);}
	50% { transform: translateX(3vw) rotate(-25deg);}
}
.service-about-illust_16 {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 740px;
	left: 425px;
	opacity: 0.15;
	transform: scale(0.6);
	animation: star-mini 3s ease-in-out infinite -1.6s;
}
.service-about-illust_07c {
	width: 16px;
	aspect-ratio: 16 / 16;
	object-fit: cover;
	position: absolute;
	top: 840px;
	left: 380px;
	animation: star-pulsate 3s ease-in-out infinite -1s;
}
.service-about-illust_06 {
	width: 40px;
	position: absolute;
	top: 900px;
	left: 380px;
	animation: illust13-rotate 40s linear infinite;
}
@media only screen and (min-width: 767px) and (max-width: 1259px) {
	#service-about {
		margin-bottom: 9.524vw;
	}
	#service-about h3 {
		margin-bottom: 3.968vw;
	}
	#service-about .about-title1 {
		width: 19.762vw;
		margin-bottom: 2.381vw;
	}
	#service-about .about-title2 {
		width: 25.476vw;
	}
	#service-about .about-astro-wrap {
		width: 21.429vw;
		margin: 0 auto 2.778vw;
	}
	#service-about .about-astro {
		width: 14.841vw;
	}
	#service-about .about-astro .about-astro-img {
		width: 14.841vw;
	}
	#service-about .about-astro .main_play {
		width: 6.3492vw;
		height: 1.746vw;
		top: 3.6508vw;
		left: 5.5556vw;
	}
	#service-about .about-balloon {
		font-size: 1.19vw;
	}
	#service-about .about-balloon-bg {
		filter:
			drop-shadow(0 0 0.159vw rgba(0, 129, 204, 0.9)) 
			drop-shadow(0 0 0.317vw rgba(0, 129, 204, 0.8));
	}
	#service-about .service-about-desc {
		margin: 0 0 3.175vw 4.762vw;
		font-size: 1.19vw;
	}
	#service-about .service-about-ill-x img {
		width: 17.14285714285714vw;
	}
	.service-about-illust_18 {
		width: 1.27vw;
		top: 25.397vw;
		left: 3.968vw;
	}
	.service-about-illust_07a {
		width: 1.27vw;
		top: 11.905vw;
		left: 3.968vw;
	}
	.service-about-illust_19a {
		width: 0.952vw;
		top: 7.937vw;
		left: 33.333vw;
	}
	.service-about-illust_17 {
		width: 1.19vw;
		top: 16.667vw;
		left: 34.921vw;
	}
	.service-about-illust_19b {
		width: 0.952vw;
		top: 33.333vw;
		left: 31.746vw;
	}
	.service-about-illust_07b {
		width: 1.27vw;
		top: 40.476vw;
		left: 4.762vw;
	}
	.service-about-illust_20 {
		width: 1.27vw;
		top: 40.476vw;
		left: 32.54vw;
	}
	.service-about-illust_01 {
		width: 6.349vw;
		top: 48vw;
		left: 29vw;
	}
	.service-about-illust_16 {
		width: 1.27vw;
		top: 58.73vw;
		left: 33.73vw;
	}
	.service-about-illust_07c {
		width: 1.27vw;
		top: 66.667vw;
		left: 30.159vw;
	}
	.service-about-illust_06 {
		width: 3.175vw;
		top: 71.429vw;
		left: 30.159vw;
	}
}
@media only screen and (max-width: 766px) {
	#service-about {
		margin-bottom: 24vw;
	}
	#service-about h3 {
		margin-bottom: 10vw;
	}
	#service-about .about-title1 {
		width: 49.8vw;
		margin-bottom: 6vw;
	}
	#service-about .about-title2 {
		width: 64.2vw;
	}
	#service-about .about-astro-wrap {
		width: 54vw;
		margin: 0 auto 7vw;
	}
	#service-about .about-astro {
		width: 37.4vw;
	}
	#service-about .about-astro .main_play {
		width: 16.5vw;
		height: 4.47vw;
		top: 9.6vw;
		left: 13.4vw;
	}
	#service-about .about-astro .main_play img {
		width: 90vw;
		height: 4.47vw;
	}
	#service-about .about-balloon {
		font-size: 3vw;
	}
	#service-about .about-balloon-bg {
		filter:
			drop-shadow(0 0 0.4vw rgba(0, 129, 204, 0.9)) 
			drop-shadow(0 0 0.8vw rgba(0, 129, 204, 0.8));
	}
	#service-about .service-about-desc {
		margin: 0 0 8vw 12vw;
		font-size: 3vw;
	}
	#service-about .service-about-ill-x img {
		width: 43.2vw;
	}
	.service-about-illust_18 {
		width: 3.2vw;
		top: 64vw;
		left: 10vw;
	}
	.service-about-illust_07a {
		width: 3.2vw;
		top: 30vw;
		left: 10vw;
	}
	.service-about-illust_19a {
		width: 2.4vw;
		top: 20vw;
		left: 84vw;
	}
	.service-about-illust_17 {
		width: 3vw;
		top: 42vw;
		left: 88vw;
	}
	.service-about-illust_19b {
		width: 2.4vw;
		top: 84vw;
		left: 80vw;
	}
	.service-about-illust_07b {
		width: 3.2vw;
		top: 102vw;
		left: 12vw;
	}
	.service-about-illust_20 {
		width: 3.2vw;
		top: 102vw;
		left: 82vw;
	}
	.service-about-illust_01 {
		width: 16vw;
		top: 128vw;
		left: 78vw;
	}
	.service-about-illust_16 {
		width: 3.2vw;
		top: 148vw;
		left: 85vw;
	}
	.service-about-illust_07c {
		width: 3.2vw;
		top: 168vw;
		left: 76vw;
	}
	.service-about-illust_06 {
		width: 8vw;
		top: 180vw;
		left: 76vw;
	}
}
.service-list-item {
	margin-bottom: 30px;
	text-align: center;
}
.service-list-item .num {
	display: block;
}
.service-list-item .num img {
	width: auto;
	height: 21px;
}
.service-list-item h3 {
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 26px;
	line-height: 1.4;
}
.service-list-item figure {
	margin-bottom: 30px;
	padding: 5px;
	background: #fff;
	clip-path: polygon(
		0 5px, 5px 5px, 5px 0,
		calc(100% - 5px) 0, calc(100% - 5px) 5px, 100% 5px,
		100% calc(100% - 5px), calc(100% - 5px) calc(100% - 5px), calc(100% - 5px) 100%,
		5px 100%, 5px calc(100% - 5px), 0 calc(100% - 5px)
	);
}
.service-list-item figure img {
	width: 100%;
	height: auto;  
}
.service-list-item p {
	margin: 0 1em;
	text-align: justify;
	font-weight: bold;
	font-size: 16px;
	line-height: 2.5;
}
.service-list-point-wrap {
	margin: -45px 0 100px;
	padding: 45px 25px 30px;
	border-radius: 10px;
	border: solid 3px #000;
	background: #fc2f79;
	position: relative;
}
.service-list-point-wrap:before {
	content: '';
	width: 100%;
	height: 100%;
	border-radius: 10px;
	border: solid 3px #000;
	background: #fff;
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: -1;
}
.card2 .service-list-point-wrap {
	background: #ffc300;
}
.card3 .service-list-point-wrap {
	background: #16C924;
}
.card4 .service-list-point-wrap {
	background: #2FF6FA;
}
.service-list-point {
	margin-bottom: 15px;
	font-size: 0;
}
.service-list-point-wrap .service-list-sub {
	font-weight: bold;
	font-size: 18px;
	line-height: 1.5;
	color: var(--navy);
}
.service-list-square {
	display: flex;
	justify-content: center;
	gap: 5px;
	margin: 20px 0 15px;
}
.service-list-square span {
	display: flex;
	gap: 5px;
}
.service-list-square span::before,
.service-list-square span::after {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	background-color: var(--navy);
}
.service-list-point-wrap p {
	text-align: justify;
	font-weight: bold;
	font-size: 13.5px;
	line-height: 2;
	color: #000;
}
@media only screen and (min-width: 767px) and (max-width: 1259px) {
	.service-list-item {
		margin-bottom: 2.381vw;
	}
	.service-list-item .num img {
		height: 1.667vw;
	}
	.service-list-item h3 {
		margin-bottom: 2.381vw;
		font-size: 2.063vw;
	}
	.service-list-item figure {
		margin-bottom: 2.381vw;
		padding: 0.397vw;
		clip-path: polygon(
			0 0.397vw, 0.397vw 0.397vw, 0.397vw 0,
			calc(100% - 0.397vw) 0, calc(100% - 0.397vw) 0.397vw, 100% 0.397vw,
			100% calc(100% - 0.397vw), calc(100% - 0.397vw) calc(100% - 0.397vw), calc(100% - 0.397vw) 100%,
			0.397vw 100%, 0.397vw calc(100% - 0.397vw), 0 calc(100% - 0.397vw)
		);
	}
	.service-list-item p {
		font-size: 1.27vw;
	}
	.service-list-point-wrap {
		margin: -3.571vw 0 7.937vw;
		padding: 3.571vw 1.984vw 2.381vw;
		border-radius: 0.794vw;
		border: solid 0.238vw #000;
	}
	.service-list-point-wrap:before {
		border-radius: 0.794vw;
		border: solid 0.238vw #000;
		top: 1.587vw;
		left: 1.587vw;
	}
	.service-list-point {
		margin-bottom: 1.19vw;
	}
	.service-list-point-wrap .service-list-sub {
		font-size: 1.429vw;
	}
	.service-list-square {
		gap: 0.397vw;
		margin: 1.587vw 0 1.19vw;
	}
	.service-list-square span {
		gap: 0.397vw;
	}
	.service-list-square span::before,
	.service-list-square span::after {
		width: 0.397vw;
		height: 0.397vw;
	}
	.service-list-point-wrap p {
		font-size: 1.071vw;
	}
}
@media only screen and (max-width: 766px) {
	.service-list-item {
		margin-bottom: 6vw;
	}
	.service-list-item .num img {
		height: 4.2vw;
	}
	.service-list-item h3 {
		margin-bottom: 6vw;
		font-size: 5.2vw;
	}
	.service-list-item figure {
		margin-bottom: 6vw;
		padding: 1vw;
		clip-path: polygon(
			0 1vw, 1vw 1vw, 1vw 0,
			calc(100% - 1vw) 0, calc(100% - 1vw) 1vw, 100% 1vw,
			100% calc(100% - 1vw), calc(100% - 1vw) calc(100% - 1vw), calc(100% - 1vw) 100%,
			1vw 100%, 1vw calc(100% - 1vw), 0 calc(100% - 1vw)
		);
	}
	.service-list-item p {
		font-size: 3.2vw;
	}
	.service-list-point-wrap {
		margin: -9vw 0 20vw;
		padding: 9vw 5vw 6vw;
		border-radius: 2vw;
		border: solid 0.6vw #000;
	}
	.service-list-point-wrap:before {
		border-radius: 2vw;
		border: solid 0.6vw #000;
		top: 4vw;
		left: 4vw;
	}
	.service-list-point {
		margin-bottom: 3vw;
	}
	.service-list-point-wrap .service-list-sub {
		font-size: 3.6vw;
	}
	.service-list-square {
		gap: 1vw;
		margin: 4vw 0 3vw;
	}
	.service-list-square span {
		gap: 1vw;
	}
	.service-list-square span::before,
	.service-list-square span::after {
		width: 1vw;
		height: 1vw;
	}
	.service-list-point-wrap p {
		font-size: 2.7vw;
	}
}
.service-ill-effect {
	text-align: right;
	position: relative;
	z-index: 3;
}
.card2 .service-ill-effect,
.card4 .service-ill-effect {
	text-align: left;
}
.service-ill-effect .title-effect {
	transition-delay: 0.3s;
}
.service-ill-balloon {
	display: inline-block;
	vertical-align: top;
	height: 12.4vw;
	margin-bottom: 1vw;
	padding: 0 1.2em;
	text-align: center;
	font-weight: bold;
	font-size: 2.8vw;
	line-height: 10.6vw;
	letter-spacing: 0.05em;
	white-space: nowrap;
	position: relative;
	transition: all 0.3s ease;
}
.service-ill-bg {
	width: 100%;
	height: 12.4vw;
	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 0.8));
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.service-ill-bg:before {
	content: '';
	width: 40%;
	height: 100%;
	background: url(images/service/page-title-balloon-left.svg) no-repeat left top / auto 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.service-ill-bg:after {
	content: '';
	width: 60%;
	height: 100%;
	background: url(images/service/page-title-balloon-right.svg) no-repeat right top / auto 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.card2 .service-ill-bg:before {
	transform: scale(-1, 1);
	left: auto;
	right: 0;
}
.card2 .service-ill-bg:after {
	transform: scale(-1, 1);
	right: auto;
	left: 0;
}
.service-list-ill-x {
	margin: 0 6vw;
	animation: chokomaka-x15 0.8s ease-in-out infinite alternate;
}
.effected .service-list-ill-x img {
	width: 12.8vw;
	animation: chokomaka-rotate 0.8s ease-in-out infinite alternate;
}
.service-list-more {
	width: 52vw;
	margin: 4vw auto 0;
}
.service-list-more a {
	display: block;
	height: 11vw;
	vertical-align: top;
	text-decoration: none;
	text-shadow: 0 0 5px #3f57f8, 0 0 5px #3f57f8, 0 0 3px #3f57f8;
	font-weight: bold;
	font-size: 3vw;
	line-height: 12vw;
	color: #fff;
	position: relative;
	z-index: 0;
	transition: .2s;
}
.service-list-more a:before {
	content: '';
	width: 100%;
	height: 100%;
	outline: 2px solid #3f57f8;
	border-radius: 10px;
	border: 2px solid #fff;
	background: #4766fe;
	box-shadow: 0 0 0 2px #3f57f8 inset, 0 0 10px rgba(255, 255, 255, 0.7) inset;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: all 0.4s ease;
	filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9));
	cursor: pointer;
}
.service-list-more a:after {
	display: inline-block;
	vertical-align: top;
	content: '';
	width: 1.0em;
	height: 12vw;
	margin: 0 -0.5em 0 0.5em;
	background: url(../images/service/link.svg) no-repeat left / 100% auto;
}
@media only screen and (min-width: 1260px) {
	.service-ill-balloon {
		height: 62px;
		margin-bottom: 5px;
		font-size: 14px;
		line-height: 53px;
	}
	.service-ill-bg {
		animation: led-flash-limit 1.7s ease-in-out infinite;
	}
	.service-ill-bg {
		height: 62px;
	}
	.service-list-ill-x {
		margin: 0 30px;
	}
	.effected .service-list-ill-x img {
		width: 64px;
	}
	.service-list-more {
		width: 260px;
		margin: 10px auto;
	}
	.service-list-more a {
		height: 46px;
		font-size: 15px;
		line-height: 50px;
	}
	.service-list-more a:before {
		border: 3px solid #fff;
	}
	.service-list-more a:hover {
		transform: translateY(-2px);
	}
	.service-list-more a:hover:before {
		filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
		box-shadow: 0 0 0 2px #3f57f8 inset, 0 0 15px rgba(255, 255, 255, 0.9) inset;
	}
	.service-list-more a:after {
		height: 50px;
	}
}
@media only screen and (min-width: 767px) and (max-width: 1259px) {
	.service-ill-balloon {
		height: 4.921vw;
		margin-bottom: 0.397vw;
		font-size: 1.111vw;
		line-height: 4.206vw;
	}
	.service-ill-bg {
		height: 4.921vw;
	}
	.service-list-ill-x {
		margin: 0 2.381vw;
	}
	.effected .service-list-ill-x img {
		width: 5.079vw;
	}
	.service-list-more {
		width: 20.635vw;
		margin: 0.794vw auto;
	}
	.service-list-more a {
		height: 3.651vw;
		font-size: 1.19vw;
		line-height: 3.968vw;
	}
	.service-list-more a:before {
		border: 0.238vw solid #fff;
	}
	.service-list-more a:hover {
		transform: translateY(-0.159vw);
	}
	.service-list-more a:hover:before {
		filter: drop-shadow(0 0 0.794vw rgba(255, 255, 255, 1));
		box-shadow: 0 0 0 0.159vw #3f57f8 inset, 0 0 1.19vw rgba(255, 255, 255, 0.9) inset;
	}
	.service-list-more a:after {
		height: 3.968vw;
	}
}
#service-list .card1,
#service-list .card2,
#service-list .card3,
#service-list .card4 {
	overflow: hidden;
	padding: 0 50px;
	position: relative;
}
#service-list .illust_04a {
	width: 9vw;
	height: auto;
	margin-left: 0;
	top: 5vw;
	left: 8vw;
}
#service-list .illust_10 {
	margin-left: 0;
	position: absolute;
	top: 100vw;
	left: 90vw;
	animation-duration: 6s;
}
#service-list .card3 .illust_10 {
	top: 70vw;
}
#service-list .card3 .planet {
	--height: 11vw;
	top: 4vw;
	left: 6vw;
}
@media only screen and (min-width: 1260px) {
	#service-list .illust_04a {
		width: 40px;
		height: auto;
		margin-left: 0;
		top: 40px;
		left: 60px;
	}
	#service-list .illust_10 {
		width: 30px;
		top: 380px;
		left: 460px;
		animation: servicelist_illust_10 8s linear infinite;
	}
	#service-list .card2 .illust_10 {
		top: 600px;
		left: 450px;
	}
	#service-list .card3 .illust_10 {
		top: 350px;
	}
	#service-list .card3 .planet {
		--height: 60px;
		top: 13px;
		left: 41px;
	}
}
@media only screen and (min-width: 767px) and (max-width: 1259px) {
	#service-list .illust_04a {
		width: 3.1vw;
		height: auto;
		margin-left: 0;
		top: 4vw;
		left: 4vw;
	}
	#service-list .illust_10 {
		width: 2.3vw;
		top: 30vw;
		left: 36vw;
		animation: servicelist_illust_10 8s linear infinite;
	}
	#service-list .card2 .illust_10 {
		top: 49vw;
		left: 35vw;
	}
	#service-list .card3 .illust_10 {
		top: 28vw;
	}
	#service-list .card3 .planet {
		--height: 4vw;
		top: 4vw;
		left: 2vw;
	}
}
@keyframes servicelist_illust_10 {
	0% {
		opacity: 0;
		transform: translate(0, 0);
		filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.3));
	}
	10% {
		opacity: 1;
		filter: drop-shadow(0 0 10px rgba(255, 0, 0, 1));
	}
	40% {
		opacity: 1;
		filter: drop-shadow(0 0 8px rgba(255, 0, 0, 1));
	}
	50% {
		opacity: 0;
		transform: translate(-45px, 45px) scale(0.8);
		filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.3));
	}
	100% {
		opacity: 0;
		transform: translate(-60px, 60px) scale(0);
		filter: drop-shadow(0 0 2px rgba(255, 0, 0, 0.3));
	}
}



/*共通*/
.inner{
	padding: 0 70px;
}
.pc_only{}
.sp_only{display: none;}
.formal{
	font-weight: bold;
  line-height: 2.8;
	letter-spacing: 0.1em;
	font-size: 3vw;
}
#page-title h1 {
  margin-bottom: var(--title-yohaku);
}
.pop-effect {
	opacity: 0;
	transform: scale(0.5);
	transition: 
		opacity .4s cubic-bezier(0.215, 0.61, 0.355, 1) .2s,
		transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275) .2s;
}
.pop-effect.effected {
	opacity: 1;
	transform: scale(1);
}


@media only screen and (min-width: 1260px) {
  .formal{
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1259px) {
  .formal {
    font-size: 1.2698vw;
  }
.inner {
  padding: 0 40px;
}
}
@media only screen and (max-width: 766px) {
#page-title h1 {
  margin-bottom: 70px;
}
.inner{
	padding: 0 50px;
}
.pc_only{display: none}
.sp_only{display: block;}	
	
}



/* ---------------------------------------------------------
ページネーション
--------------------------------------------------------- */
.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3.2vw;
	margin-top: 10vw;
}
.wp-pagenavi .page-numbers {   /* ← a だけ → .page-numbers に変更（a も span も拾う）*/
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 10vw;
	height: 10vw;
	border-radius: 100%;
	background: #fff;
	color: #001242;
	font-weight: bold;
	font-size: 3.6vw;
	text-decoration: none;
	transition: 0.3s ease;
}
/* 現在のページ（青＋ネオングロー）*/
.wp-pagenavi .current {   /* ← a.current → .current に変更（span だから）*/
	background: #5266fa;
	color: #fff;
	border: 3px solid #fff;
	box-shadow: 0 0 15px rgba(197, 255, 0, 0.8), 0 0 25px rgba(197, 255, 0, 0.5);
	pointer-events: none;
}
/* PC */
@media only screen and (min-width: 1260px) {
	.wp-pagenavi { gap: 16px; margin-top: 60px; }
	.wp-pagenavi .page-numbers { width: 50px; height: 50px; font-size: 18px; }
	.wp-pagenavi a.page-numbers:hover { background: #5266fa; color: #fff; }
}
/* タブレット */
@media only screen and (min-width: 767px) and (max-width: 1259px) {
	.wp-pagenavi { gap: 1.2698vw; margin-top: 4.7619vw; }
	.wp-pagenavi .page-numbers { width: 3.9683vw; height: 3.9683vw; font-size: 1.4286vw; }
	.wp-pagenavi a.page-numbers:hover { background: #5266fa; color: #fff; }
}



/* ---------------------------------------------------------
実績紹介詳細
--------------------------------------------------------- */

#page-title .works-detail { margin-bottom: 8vw; }   /* 40px */
.works .page-title-comment {
  padding-top: 50px;
}
#page-title.works {
    padding-bottom: 0px;
  }
.works-detail { padding: 0 8vw; }                    /* 余白（40px相当）*/
.works-detail span {
	font-size: 6.4vw;       /* 32px */
	font-weight: bold;
	line-height: 1.6;
	display: block;
	text-align: left;
}
.works-detail img {
	display: block;
	width: 17.4vw;
	height: auto;
	margin-left: auto;
	margin-right: auto;   /* ← 中央寄せをキープ */
	margin-bottom: 5vw;   /* ← ここを小さくすると間隔が詰まる */
}
.works-label {
	display: inline-block;
	background: #21b8ce;
	color: #fff;
	font-weight: bold;
	font-size: 3.2vw;        /* 16px */
	height: 7.6vw;           /* 38px */
	line-height: 7.6vw;      /* heightと揃える＝縦中央 */
	text-align: center;
	padding: 0 4vw;          /* 左右だけ（上下0）*/
	clip-path: polygon( 0 5px, 5px 5px, 5px 0, calc(100% - 5px) 0, calc(100% - 5px) 5px, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 5px calc(100% - 5px), 0 calc(100% - 5px) );
}
.works-sec{margin-bottom: 10vw;}
.cat_ara {
	display: flex;
	align-items: flex-start;
	gap: 6vw;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding-bottom: 7vw;
}
.cat-label {
	flex-shrink: 0;          /* 見出しは縮ませない */
	font-weight: bold;
	color: #fff;
	font-size: 3vw;        /* 14px */
	line-height: 8vw;        /* pillと同じ高さ＝1行目と縦中央 */
	white-space: nowrap;
}
.cat-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 2.3vw;
}
.cat-tags li a {
	display: block;
	height: 6.8vw;
	line-height: 6.8vw;
	padding: 0px 1.2em;
	border-radius: 6.8vw;
	background: #fff;
	color: #001242;
	font-weight: bold;
	font-size: 2.8vw;      /* 12px */
	text-decoration: none;
	white-space: nowrap;
	transition: 0.3s ease;
}

.works_tex_ara{
	padding: 8vw 0 12vw;
	text-align: left;
	  font-weight: 600;
  font-size: 3vw;
  line-height: 2.2;
	}
.btn_area {
	display: flex;
	align-items: center;
	gap: 4.8vw;
	padding: 3vw 6vw;
	background: #5266fa;              /* 既存の青と統一 */
	border: 4px solid #fff;
	border-radius: 999px;
	box-shadow: 0 0 15px rgba(82, 102, 250, 0.9), 0 0 35px rgba(82, 102, 250, 0.6);  /* ネオングロー */
	max-width: 90%;
	margin: auto;
}
.btn-arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.btn-arrow img {
	width: 2vw;
	display: block;
}
.btn-divider {
	flex-shrink: 0;
	width: 2px;
	height: 7.2vw;
	background: rgba(255, 255, 255, 0.7);
}
.btn-back {
	flex: 1;                          /* 中央を伸ばす＝テキストが真ん中 */
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 3.2vw;                /* 16px */
	text-decoration: none;
}
.main_photo {
	padding: 0 7vw;
	margin-bottom: 6vw;
}  
.photo_area{margin-bottom: 12vw;}
.works_gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;   /* 2列 */
	gap: 4vw;
}
.works_gallery li a {
	display: block;
	aspect-ratio: 1 / 1;              /* ← 枠を正方形に固定 */
	overflow: hidden;
}
.works_gallery li img {
	width: 100%;
	height: 100%;
	object-fit: cover;                /* ← 長方形写真も正方形枠にトリミング */
	display: block;
}
.slide-item .tag span a {
	display: block;
	height: 6.8vw;
	padding: 0 1.2em;
	border-radius: 6.8vw;
	background: #fff;
	color: #001242;
	font-size: 2.8vw;
	line-height: 6.8vw;
	font-weight: bold;
	text-decoration: none;
	white-space: nowrap;
	transition: 0.3s ease;
}
.slide-item .tag span a:hover {
	background: #5266fa;
	color: #fff;
}
/* PC */
@media only screen and (min-width: 1260px) {
#page-title.works{
	padding-bottom: 0px;
}
#page-title .works-detail{
  margin-bottom: 30px;
}
.works-sec{margin-bottom: 50px;}
.main_photo { 
	padding: 0 35px;
	margin-bottom: 30px;
	
	}
.works-detail{
	padding: 0 70px;
	}	
	 .works-detail img {
    width: 118px;
    height: 19px;
		 margin-bottom: 2vw;
  }
.works-detail span{
	font-size: 32px;
	}
.works-label {
		font-size: 16px;
		height: 38px;
		line-height: 38px;   /* ← 0.4 から修正（縦中央）*/
		padding: 0 20px;
}
.works_tex_ara{
	padding: 40px 0 60px;
	font-size: 16px;
	}
	.slide-item .tag span a {
	height: 34px;
	border-radius: 34px;
	font-size: 12px;
	line-height: 34px;
}
	.cat_ara { gap: 40px; padding-bottom: 30px; }
	.cat-label { font-size: 14px; line-height: 40px; }
	.cat-tags { gap: 12px; }
	.cat-tags li a {
		height: 34px;
    border-radius: 34px;
    font-size: 12px;
    line-height: 34px;
	}
	
	
	
	.cat-tags li a:hover { opacity: 0.7; }
	.btn_area { gap: 24px; padding: 18px 40px;}
	.btn-arrow img { width: 10px; }
	.btn-divider { height: 36px; }
	.btn-back { font-size: 16px; }
	.btn-back:hover { opacity: 0.8; }
	.works_gallery { gap: 20px; }
	.photo_area{margin-bottom: 60px;}
}
@media only screen and (min-width: 767px) and (max-width: 1259px) {
	#page-title .works-detail { margin-bottom: 3.1746vw; } 
	.works-detail { padding: 0 5.5556vw; }                   /* 70px */
	.works-detail img { width: 6.9048vw; height: auto; margin-bottom: 2vw;}     /* 87px・高さ自動 */
	.works-detail span { font-size: 2.5397vw; }  
	.works-label {
		font-size: 1.2698vw;     /* 16px */
		height: 3.0159vw;        /* 38px */
		line-height: 3.0159vw;
		padding: 0 1.5873vw;     /* 20px */
	}/* 32px */
	#page-title.works {
    padding-bottom: 0px;
  }
	.works-sec{margin-bottom: 3.9683vw;}
	.main_photo {
		padding: 0 2.7778vw;
		margin-bottom: 2.381vw;
	}
.photo_area{margin-bottom: 4.7619vw;}
	.works_tex_ara{
	padding: 3.1746vw 0 4.7619vw; 
	font-size: 1.2698vw;
	}
	.slide-item .tag span a {
	height: 2.6984vw;
	border-radius: 2.6984vw;
	font-size: 1.1111vw;
	line-height: 2.6984vw;
}
	.cat_ara { gap: 3.1746vw; padding-bottom: 3.1746vw; }
	.cat-label { font-size: 1.1111vw; line-height: 3.1746vw; }
	.cat-tags { gap: 0.9524vw; }
	.cat-tags li a {
		height: 3.1746vw;
		line-height: 3.1746vw;
		padding: 0 1.9048vw;
		font-size: 0.9524vw;

}
	.btn_area { gap: 1.9048vw; padding: 1.4vw 3.1746vw; }
	.btn-arrow img { width: 0.7937vw; }
	.btn-divider { height: 2.8571vw; }
	.btn-back { font-size: 1.2698vw; }
	.works_gallery { gap: 1.5873vw; }
}
	

/* ---------------------------------------------------------
実績紹介
--------------------------------------------------------- */
.service-sec{padding: 0px 0 30px;}
/* 絞り込みナビ */
.pg-works-nav {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	padding: 6vw 0;
	position: relative;
	margin-bottom: 35px;
}
.pg-works-nav__button {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
}
.pg-works-nav__button__title {
	font-weight: bold;
	font-size: 3vw;
	color: #fff;
	text-align: left;
	font-family: "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
	
}
/* 青丸の＋ */
.pg-works-nav__button .c-plus {
	width: 5vw;
	height: 5vw;
	border-radius: 100%;
	background: #5266fa;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
}
.pg-works-nav__button .c-plus::before,
.pg-works-nav__button .c-plus::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: #fff;
}
.pg-works-nav__button .c-plus::before {
	width: 2vw;
	height: 2px;
	transform: translate(-50%, -50%);
}
.pg-works-nav__button .c-plus::after {
	width: 2px;
	height: 2vw;
	transform: translate(-50%, -50%);
}
/* 開いたら ＋ → × */
.pg-works-nav.is-open .c-plus {
	transform: translateY(-50%) rotate(45deg);
}

/* 閉じてる時：grid の行を 0fr（高さ0）*/
.pg-works-nav__body {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;          /* ← この1行を追加！ */
	transition: grid-template-rows 0.4s ease;
}
/* 開いた時：1fr（中身の自然な高さ）*/
.pg-works-nav.is-open .pg-works-nav__body {
	grid-template-rows: 1fr;
}
/* grid の子は overflow hidden が必須 */
.pg-works-nav__body > * {
	overflow: hidden;
	min-height: 0;
}
/* タグ（pills） */
.pg-works-nav.is-open .pg-works-nav__body__inner {
	padding-top: 6vw;
}
.c-term2 {
	display: flex;
	flex-wrap: wrap;
	gap: 3vw;
}
.c-term2 li a {
  display: block;
  height: 6vw;
  padding: 0 4vw;
  border-radius: 999px;
  background: #fff;
  font-weight: bold;
  font-size: 2.4vw;
  line-height: 6vw;
  color: #001242;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s ease;
}
.c-term2 li a.is-current {
	background: #5266fa;
	color: #fff;
}


.service_list .slide-item {
  width: 100%;
	position: relative;
	margin-bottom: 50px;
}
.service_list .slide-item figure {
	margin-bottom: 0;
}
.service_list .slide-item .label {
	position: relative;
	top: auto;
	left: auto;
	margin-top: -5vw;      /* -25px ÷ 500 × 100 */
	margin-left: 4vw;      /* 20px */
	margin-bottom: 2.4vw; 
	z-index: 1;
	width: fit-content; 
}
/* 実績一覧（archive）のタグだけ：spanを透明な入れ物にする（TOPのタグは触らない）*/
.service_list .slide-item .tag span {
	background: none;
	height: auto;
	border-radius: 0;
	line-height: normal;
	padding: 0;
}
/* PC */
@media only screen and (min-width: 1260px) {
	.service-sec{padding: 0px 0 80px;}
	.pg-works-nav { padding: 30px 0; }
	.pg-works-nav__button__title { font-size: 14px; }
	.pg-works-nav__button .c-plus { width: 30px; height: 30px; }
	.pg-works-nav__button .c-plus::before { width: 10px; }
	.pg-works-nav__button .c-plus::after { height: 10px; }
	.pg-works-nav.is-open .pg-works-nav__body__inner {
		padding-top: 25px;
	}
	.c-term2 { gap: 12px; }
	.c-term2 li a {
		height: 32px;
    padding: 0 22px;
    font-size: 12px;
    line-height: 29px;
	}
	.c-term2 li a:hover,.slide-item .tag span a:hover{ background: #5266fa; color: #fff; }
	
	.service_list .slide-item {
	margin-bottom: 70px;
}
	.service_list  .slide-item figure img {
    width: 100%;
    height: auto;
  }
.service_list .slide-item figure { margin-bottom: 0; }
.service_list .slide-item .label {
	position: relative;
    top: auto;
    left: auto;
    margin-top: -25px;
    margin-left: 20px;
    margin-bottom: 12px;
}

}

/* タブレット */
@media only screen and (min-width: 767px) and (max-width: 1259px) {
	.pg-works-nav { padding: 2.381vw 0; }            /* 30px */
	.pg-works-nav__button__title { font-size: 1.1111vw; }   /* 14px */
	.pg-works-nav__button .c-plus { width: 2.381vw; height: 2.381vw; }  /* 30px */
	.pg-works-nav__button .c-plus::before { width: 0.7937vw; }  /* 10px */
	.pg-works-nav__button .c-plus::after { height: 0.7937vw; }  /* 10px */
	.pg-works-nav.is-open .pg-works-nav__body__inner{ padding-top: 1.9841vw; }   /* 25px */
	.c-term2 { gap: 0.9524vw; }                       /* 12px */
	.c-term2 li a {
		height: 2.5397vw;       /* 32px */
		padding: 0 1.746vw;     /* 22px */
		font-size: 0.9524vw;    /* 12px */
		line-height: 2.3016vw;  /* 29px */
	}
	.c-term2 li a:hover { background: #5266fa; color: #fff; }
	.service_list .slide-item figure img {
    width: 100%;
    height: auto;
  }
.service_list .slide-item figure { margin-bottom: 0; }
.service_list .slide-item .label {
	position: relative;
	top: auto;
	left: auto;
	margin-top: -1.9841vw;    /* -25px ÷ 1260 × 100 */
	margin-left: 1.5873vw;    /* 20px */
	margin-bottom: 0.9524vw;  /* 12px */
}
}




/* ---------------------------------------------------------
会社概要
--------------------------------------------------------- */
.company-title img {
  width: 37.8vw;
  height: auto;
}
.outline .title_ara img{
	width: 27.4vw;
	height: auto;	
}
.message .title_ara img {
	width: 42vw;
	height: auto;
}
.rocket {
	width: 100%;
	overflow: hidden;
	padding:  50px 0;
}
.rocket img {
	display: block;
	animation: rocket-flow 9s linear infinite;
}
.history .title_ara img{
	width: 28.4vw;
	height: auto;
}
@keyframes rocket-flow {
	0%       { transform: translateX(100vw); }   /* 右の画面外からスタート */
	94.4444% { transform: translateX(-100vw); }  /* 左の画面外へ消える（移動8.5秒） */
	100%     { transform: translateX(-100vw); }  /* 左外で待機（0.5秒）→ ループ */
}
.outline {
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.outline .company-planet {
	position: absolute;
	top: 20vw;
	right: 6vw;
	z-index: 1;
}
.outline .company-planet img {
	width: 12vw;
	height: auto;
	aspect-ratio: 40 / 39;
	object-fit: cover;
	animation: star-planet 17s ease-in-out infinite;
}
.outline .title_ara {
	margin-bottom: 12vw;
}
.outline .company-list {
	text-align: left;
}
.outline .company-list .company-row {
	display: flex;
	align-items: flex-start;
	gap: 4vw;
	padding: 6vw 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.outline .company-list .company-row:first-of-type {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.outline .company-list dt {
	flex-shrink: 0;
	width: 28vw;
	font-weight: bold;
	font-size: 3vw;
	color: #16C924;
}
.outline .company-list dd {
	flex: 1;
	font-weight: 600;
	font-size: 3vw;
	line-height: 2;
}
/* 
沿革
*/
.history {
	overflow: hidden;
	position: relative;
	z-index: 0;
	padding: 8vw 0 35vw;
}

.history .title_ara,.message .title_ara{
	margin-bottom: 14vw;
}

.history .history-list {
	text-align: left;
}

.history .history-row {
	display: flex;
	align-items: flex-start;
	gap: 6vw;
	margin-bottom: 10vw;
}

.history .history-row:last-of-type {
	margin-bottom: 0;
}

.history .history-row dt {
	flex-shrink: 0;
	width: 28vw;
	font-weight: bold;
	font-size: 3vw;
	line-height: 1.6;
	color: #25F4FF;
}

.history .history-row dd {
	flex: 1;
	font-weight: 700;
	font-size: 3vw;
	line-height: 1.9;
	color: #fff;
}
/* 
メッセージ
*/

.message .txt_ara p{
	text-align: left;
}
.message .txt_ara{
	margin-bottom: 100px;
	position: relative;
}
.message .inner{position: relative;}
.message-photo {
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
 .message .txt_ara .illust_02 {
    width: 43px;
    height: 42px;
    margin-left: auto;
    top: auto;
    left: auto;
    bottom: 100px;
    right: 0;
  }
  .message .illust_04a {
    width: 47px;
    height: 52px;
    margin-left: 50px;
    top: -100px;
    left: 0;
  }
/* フリップ土台 */
.message-photo .flip-card {
	width: 100%;
	aspect-ratio: 7 / 10;
	perspective: 1200px;
}
.message-photo .flip-card-inner {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.message-photo .flip-card.is-flipped .flip-card-inner {
	transform: rotateY(180deg);
}
.message-photo .flip-card-front,
.message-photo .flip-card-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
}
.message-photo .flip-card-back {
	transform: rotateY(180deg);
}
.message-photo .flip-card-front img,
.message-photo .flip-card-back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 120px;
}
/* .led の枠を写真の前面に乗せる＆角丸を写真に合わせる */
.message-photo .flip-card-front.led:before,
.message-photo .flip-card-back.led:before {
	z-index: 1;
	border-radius: 120px;
}
/* 吹き出し（ボス〜〜） */
.message-photo .message-balloon {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	top: -4vw;
	left: 0;
	z-index: 2;
}

/* 吹き出し（ボス〜〜）service-ill-bg 流用 */
.message-photo .message-balloon-txt {
display: inline-block;
	height: 12.4vw;
	margin-bottom: 1vw;
	font-size: 2.8vw;
	line-height: 10.6vw;
	padding: 0 1.8em;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.05em;
	white-space: nowrap;
	position: relative;
	z-index: 0;
}
.message-photo .message-balloon-txt .service-ill-bg {

	filter:
		drop-shadow(0 0 5px rgba(0, 129, 204, 0.9))
		drop-shadow(0 0 7px rgba(0, 129, 204, 0.8));
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.message-photo .message-balloon-word {
	position: relative;
	z-index: 1;
}
/* 切り替えボタン */
.message-photo .message-flip-btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.5vw;
	width: 120px;
	height: 120px;
	border: 0;
	border-radius: 100%;
	background: #fc2f79;
	box-shadow: 0 0 12px rgba(252, 47, 121, 0.7);
	text-align: center;
	font-size: 14px;
	line-height: 1.3;
	color: #fff;
	position: absolute;
	right: -2vw;
	bottom: 0;
	z-index: 3;
	cursor: pointer;
	font-weight: 600;
}
.message-photo .message-flip-icon img {
	width: 20px;
	height: auto;
}
.message-photo .message-balloon-word {
	position: relative;
	z-index: 1;
}
.message-photo .message-balloon-ill img {
width: 12.8000vw;
}
/* 会社名 */
.message-name {
	margin-top: 30px;
	font-weight: bold;
	font-size: 18px;
	line-height: 1.8;
}
	.kira_01{
		position: absolute;
		bottom: 47%;
		right: 10%;
		animation: star-pulsate 3s ease-in-out infinite -1s;
	}
	.kira_02{
		position: absolute;
		bottom: 18%;
		left: 8%;
		width: 15px;
		height: auto;
		animation: star-twinkle 5s ease-in-out infinite -2s; 
	}
	.kira_03{
		position: absolute;
		bottom: 6%;
		right: 5%;
		animation: star-twinkle 4.5s ease-in-out infinite -3s;
	}
@keyframes star-twinkle {
	0%, 100% { opacity: 0.25; filter: brightness(1); }
	10%      { opacity: 1;    filter: brightness(1.8); }
	25%      { opacity: 0.4; }
	45%      { opacity: 0.9;  filter: brightness(1.5); }
	60%      { opacity: 0.3; }
	80%      { opacity: 1;    filter: brightness(1.6); }
}

/* PC */
@media only screen and (min-width: 1260px) {
 .company-title img {
    width: 191px;
    height: 98px;
  }
.outline .title_ara img{
	width: 137px;
   height: auto;
}
.history .title_ara img{
	width: 142px;
    height: auto;
	}	
.message .title_ara img{
	width: 210px;
    height: auto;
	}	
	
	
	.outline {
		padding: 40px 0 100px;
	}
	.outline .company-planet {
		top: 90px;
    right: 40px;
	}
	.outline .company-planet img {
		width: 60px;
	}
	.outline .title_ara {
		margin-bottom: 60px;
	}
	.outline .company-list .company-row {
		gap: 20px;
		padding: 25px 0;
	}
	.outline .company-list dt,.history .history-row dt {
		width: 130px;
		font-size: 16px;
	}
	.outline .company-list dd ,.history .history-row dd{
		font-size: 16px;
	}
	.history {
		padding: 80px 0 160px;
	}
		
	.history .title_ara, .message .title_ara {
		margin-bottom: 50px;
	}

	.history .history-row {
		gap: 40px;
		margin-bottom: 50px;
	}
	.message{
	padding: 0px 0 80px;
}
	.message-photo .message-balloon-txt {
		height: 62px;
		margin-bottom: 5px;
		font-size: 14px;
		line-height: 53px;
	}
	.message-balloon .service-list-ill-x {
    margin: 0;
}
	 .message .txt_ara .illust_02 {
    width: 43px;
    height: 42px;
    margin-left: auto;
    top: auto;
    left: auto;
	 bottom: 100px;
	 right: 0;
  }
  .message .illust_04a {
    width: 47px;
    height: 52px;
    margin-left: 50px;
    top: -100px;
    left: 0;
  }
.message-photo .message-balloon-ill img {
	width: 64px;
	height: auto;
}


}

/* タブレット */
@media only screen and (min-width: 767px) and (max-width: 1259px) {
.company-title img  {
    width: 15.0vw;
    height: auto;
  }
.outline .title_ara img {
		width: 10.873vw;
		height: auto;
}
.history .title_ara img{
	width: 11.2698vw;
    height: auto;
	}
.message .title_ara img {
		width: 16.6667vw;
		height: auto;
	}
	.outline {
		padding: 3.1746vw 0;
	}
	.outline .company-planet {
		top: 6.3492vw;
		right: 2.381vw;
	}
	.outline .company-planet img {
		width: 5.3492vw;
	}
	.outline .title_ara {
		margin-bottom: 4.7619vw;
	}
	.outline .company-list .company-row {
		gap: 1.5873vw;
		padding: 1.9841vw 0;
	}
	.outline .company-list dt,.history .history-row dt {
		width: 10.3175vw;
		font-size: 1.2698vw;
	}
	.outline .company-list dd,.history .history-row dd {
		font-size: 1.2698vw;
	}
	.history {
		padding: 6.3492vw 0 9.5238vw;
	}
	.history .title_ara, .message .title_ara{
		margin-bottom: 4.3492vw;
	}
	.history .history-row {
		gap: 3.1746vw;
		margin-bottom: 3.9683vw;
	}
	.message{
	margin-bottom: 5vw;
}	
	.message .txt_ara {
  margin-bottom: 6.3492vw; 
}
.message-photo .message-balloon {
  top: -6vw;
}

.message-photo .flip-card-front img,
.message-photo .flip-card-back img {
	border-radius: 7.9365vw;
}
/* .led の枠を写真の前面に乗せる＆角丸を写真に合わせる */
.message-photo .flip-card-front.led:before,
.message-photo .flip-card-back.led:before {
	border-radius: 7.9365vw;
}
.message-photo .message-flip-btn {
  width: 10vw;
  height: 10vw;
	font-size: 1.2698vw;
}
	.message-photo .message-balloon-txt {
		height: 4.921vw;
		margin-bottom: 0.397vw;
		font-size: 1.111vw;
		line-height: 4.206vw;
}
.message-name p{
  font-size: 1.5873vw;
}
.message-photo .message-balloon-ill img {
 width: 5.0794vw;
}	
	.message-photo .message-balloon-txt{font-size: 1.2698vw;}	
}
@media only screen and (max-width: 766px) {
.message{
	margin-bottom: 10vw;
}	
 .message .inner .illust_04a {
    top: -50px;
    animation: illust_04a 3s linear infinite;
	 width: 9.4vw;
  height: 10.4vw;
  }	
.message-photo .message-balloon {
  top: -17vw;
}
.message-name p{
  font-size: 4vw;
}
.message .txt_ara {
  margin-bottom: 140px;
  position: relative;
}

}
@media only screen and (max-width: 500px) {
.message .txt_ara {
  margin-bottom: 110px;
  position: relative;
}	
}
.text_center{text-align:center!important; }