@charset "utf-8";
/* CSS Document */

/*==========
変数
==========*/
:root {
	--bg_color1: #1DCAFF;
	--font_color1: #FFF;
	--sub_color1: #275B00;
	--border_color1: #cfcfcf;
	--footer_color: #F7F7F7;
	--a_color: #0e94ff;
	--a_hover_color: #FF9233;
	--font_en: "Hind Vadodara", sans-serif;
	--bg_grad: linear-gradient(180deg, #1DCAFF 0%, #DC30FF 100%);
}


/*==========
共通
==========*/
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	height: 100%;
	background: transparent;
}

body {
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	font-size: clamp(1.6rem, 1.7vw, 1.7rem);
	font-weight: 400;
	color: var(--font_color1);
	font-feature-settings: "palt"1;
	-webkit-text-size-adjust: 100%;
	min-height: 100svh;
	position: relative;
	margin: 0;
	overflow-wrap: break-word;
	display: flex;
	flex-direction: column;
	background: transparent;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: linear-gradient(-45deg, #ee7752, #DC30FF, #1DCAFF, #23d5ab);
	background-size: 400% 400%;
	animation: gradientMove 7s ease infinite;
	will-change: transform;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}


	a {
		color: var(--a_color);
		text-decoration: none;
		transition: .3s;
	}

	a:hover,
	a:active {
		transition: .3s;
		color: var(--a_hover_color);
	}


	img {
		max-width: 100%;
		height: auto;
	}

	main {}

	.wrap {
		height: 100vh;
		display: flex;
		flex-direction: column;
	}

	.container {
		padding: 0 1rem;
	}

	@media (min-width: 768px) {
		.wrap {
			width: 480px;
			margin-inline: auto;
			background-color: rgba(255, 255, 255, 0.1);
		}
	}

	.site_header .header_logo img {
		height: 48px;
		width: auto;
	}

	.section_title {
		font-family: var(--font_en);
		font-size: 9rem;
		transform: skewX(-10deg) translateY(-1rem);
		line-height: 1;
	}


	/*==========
フッター
==========*/
	.site_footer {
		margin-top: auto;
		text-align: center;
		padding-bottom: 1rem;
	}

	.site_footer_copyright {
		font-size: clamp(1.25rem, 1.4vw, 1.4rem);
	}
