@charset "utf-8";
/* CSS Document */


/*==========
Googleフォント
==========*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Orbitron:wght@600&display=swap');


/*==========
共通
==========*/
:root {
	--background_color: #000000;
	--font_color: #FFF;
	--a_color: #FF9800;
	--hover_color: #48ADFF;
	--btn_color: #06C755;
	--main_color: #48ADFF;
	--sub_color: #fdecd6;
	--border_color: #676767;
	--pc_container: 720px;
	--font-en: "Orbitron", sans-serif;
	--gradation_color: linear-gradient(90deg, #F43FEC 0%, #5232F9 50%, #2FD0FF 100%);
}


html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 0.5rem;
}

body {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", serif;
	font-size: 1.65rem;
	font-weight: 400;
	line-height: 1;
	color: var(--font_color);
	background-color: var(--background_color);
	position: relative;
	overflow-x: hidden;
	font-feature-settings: "palt"1;
	margin: 0;
	-webkit-text-size-adjust: 100%;
}

a {
	color: var(--a_color);
	text-decoration: none;
	transition: .3s;
}

a:hover {
	transition: .3s;
	color: var(--hover_color);
}

.wrap {
	width: 100%;
	margin: 0 auto;
}

.container {
	width: 96%;
	margin: 0 auto;
}

.pc_only {
	display: none;
}

@media (min-width: 768px) {
	body {
		font-size: 1.7rem;
	}

	.wrap {
		width: 840px;
		margin: 0 auto;
	}

	.container {
		width: 100%;
	}

	.sp_only {
		display: none;
	}
	
	.pc_only {
		display: block;
	}
}


/*==========
セクションタイトル
==========*/
.section_title {
	margin-bottom: 30px;
}

.section_title .jp {
	padding: 1px 60px 3px 12px;
	min-width: 42%;
	inline-size: fit-content;
	margin-bottom: 3px;
	background: linear-gradient(90deg, #F43FEC 0%, #5232F9 50%, #2FD0FF 100%);
	position: relative;
	transform: skewX(-18deg);
}

.section_title .jp span {
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 600;
	transform: skewX(18deg);
}

.section_title .en {
	font-family: var(--font-en);
	font-size: 4.2rem;
	font-weight: 600;
}


@media (min-width: 768px) {
	.section_title {
		margin-bottom: 42px;
	}

	.section_title .jp {
		padding: 3px 60px 6px 18px;
		min-width: 36%;
		margin-bottom: 6px;
	}

	.section_title .jp span {
		display: inline-block;
		font-size: 1.8rem;
	}

	.section_title .en {
		font-size: 6rem;
	}
}



/*==========
問い合わせ
==========*/
.contact_block {
	padding: 36px 0 54px;
	text-align: center;
	background-color: #272727;
	margin: 0 calc(50% - 50vw);
}

.contact_block h4 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 18px;
	border-bottom: solid 2px var(--main_color);
	inline-size: fit-content;
	margin-inline: auto;
	padding: 0 48px 9px;
	/* inline-size: fit-content;
	background: linear-gradient(90deg, #F43FEC 0%, #5232F9 50%, #2FD0FF 100%); */
}

.contact_block .lead {
	margin-bottom: 15px;
}

.contact_block .caution {
	margin-top: 15px;
}

.contact_btn_line {
	width: 86%;
	max-width: 480px;
	height: 66px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 9px;
	background-color: var(--btn_color);
	margin: 0 auto;
	border-radius: 999px;
}

.contact_btn_line span {
	font-size: 1.6rem;
	font-weight: 700;
	color: #FFF;
}

.contact_btn_line svg {
	fill: #FFF;
	width: 48px;
	height: 48px;
}

.contact_btn_line:active {
	background-color: #48ADFF;
}

@media (min-width: 768px) {
	.contact_block {
		padding: 60px 0 78px;
	}

	.contact_block h3 {
		font-size: 3rem;
		margin-bottom: 24px;
	}

	.contact_block .lead {
		margin-bottom: 24px;
	}

	.contact_block .caution {
		margin-top: 24px;
	}

	.contact_btn_line {
		width: 480px;
		height: 78px;
	}

	.contact_btn_line span {
		font-size: 1.8rem;
	}

	.contact_btn_line svg {
		width: 54px;
		height: 54px;
	}

	.contact_btn_line:hover {
		background-color: #48ADFF;
	}
}



/*==========
サイトフッター
==========*/
.site_footer {
	padding: 90px 0 12px;
	background-color: #202020;
}

.site_footer_copy {
	font-family: var(--font-en);
	font-size: 1.25rem;
	text-align: center;
	color: #FFF;
}

@media (min-width: 768px) {
	.site_footer {
		padding: 120px 0 12px;
	}

	.site_footer_copy {
		font-size: 1.45rem;
	}
}



/*==========
サイトヘッダー
==========*/
.site_header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	padding: 3px 0;
}

.site_header .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row-reverse;
}


/*==========
フッターLINEボタン
==========*/
.footer_btn_line {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--btn_color);
	box-shadow: 1px 1px 5px #4f4f4f;
	position: fixed;
	bottom: 6px;
	right: 6px;
}

.footer_btn_line svg {
	width: 42px;
	height: 42px;
	fill: #FFF;
}

@media (min-width: 768px) {
	.site_header .container {
		width: 840px;
	}
}


/*==========
ハンバーガーメニュー
===========*/
.openbtn1 {
	width: 54px;
	height: 60px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	justify-content: center;
}

.openbtn1:hover {
	cursor: pointer;
}

.openbtn1 span {
	display: block;
	transition: all .4s;
	height: 2px;
	background-color: #FFF;
	width: 100%;
}

.openbtn1.active span:nth-of-type(1) {
	transform: translateY(8px) rotate(-45deg);
	width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
	transform: translateY(-8px) rotate(45deg);
	width: 100%;
}

#g-nav {
	position: fixed;
	z-index: 999;
	top: 0;
	right: -120%;
	width: 100%;
	height: 100vh;
	background-color: #272626;
	transition: all 0.3s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
	right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	display: flex;
	justify-content: center;
	align-items: center;
}

/*ナビゲーション*/
#g-nav ul {
	inline-size: fit-content;
	margin-inline: auto;
}

#g-nav li {
	margin-bottom: 30px;
}

#g-nav li a {
	font-size: 1.8rem;
	font-weight: 600;
	color: #FFF;
	display: inline-block;
	border-bottom: solid 2px var(--main_color);
	padding: 0 42px 6px 3px;
}

@media (min-width: 768px) {
	.openbtn1 {}

	#g-nav li a {
		font-size: 2rem;
	}
}
