@charset "utf-8";
/* CSS Document */


/*==========
Googleフォント
==========*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Noto+Sans+JP:wght@400;700;900&display=swap');


/*==========
共通
==========*/
:root {
	--background_color: #FFF;
	--font_color: #000;
	--a_color: #235eff;
	--btn_color: #368df9;
	--main_color: #ff7800;
	--sub_color: #FF4C4C;
	--hover_color: #7e64da;
	--footer_color: #151a4c;
	--pc_container: 720px;
	--font-en: "Poppins", sans-serif;
	--font-mix: "Poppins", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	--gradient100: linear-gradient(90deg, rgb(255, 76, 76), rgb(255, 178, 44) 50%, rgb(255, 222, 77));
	--header_height: 61px;
}


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", sans-serif;
	font-size: 1.5rem;
	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;
}

.text_red {
	color: #fb1818;
}

.bold {
	font-weight: 900;
}

.pc_only {
	display: none;
}


@media (min-width: 768px) {
	body {
		font-size: 1.7rem;
	}

	.wrap {
		margin: 0 auto;
	}

	.container {
		width: 100%;
	}

	.pc_only {
		display: block;
	}

	.sp_only {
		display: none;
	}
}


/*==========
セクションタイトル
==========*/
.section_title {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.section_title .en {
	font-family: var(--font-en);
	font-size: 6rem;
	font-weight: 900;
	font-style: italic;
	position: relative;
	z-index: 1;
	letter-spacing: -0.6px;
}

.section_title .jp {
	color: #2b2b2b;
	font-size: 1.5rem;
	margin-top: 15px;
}

.section_title .en::after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0%);
	-webkit-transform: translate(-50%, 0%);
	-ms-transform: translate(-50%, 0%);
	bottom: -3px;
	width: 120%;
	height: 20px;
	background: var(--gradient100);
	z-index: -1;
}

@media (min-width: 768px) {
	.section_title {
		margin-bottom: 30px;
	}

	.section_title .en {
		font-size: 7.8rem;
	}

	.section_title .jp {
		font-size: 1.6rem;
		margin-top: 18px;
	}

	.section_title .en::after {
		bottom: -2px;
		width: 130%;
		height: 24px;
	}
}


/*==========
問い合わせ
==========*/
.contact_block {
	background-color: #FFEB3B;
	padding: 36px 0 48px;
	text-align: center;
}

.contact_block p {
	font-size: 1.8rem;
	font-style: italic;
	font-weight: 900;
	margin-bottom: 18px;
}

.btn_link {
	width: 86%;
	height: 66px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: var(--btn_color);
	margin: 0 auto;
	border-radius: 999px;
	box-shadow: 2px 2px 3px #000000;
	position: relative;
}

.btn_link span {
	font-size: 1.8rem;
	font-weight: 700;
	color: #FFF;
}

.btn_link svg {
	fill: #FFF;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 18px;
}

@media (min-width: 768px) {
	.contact_block {
		padding: 54px 0 78px;
	}

	.contact_block p {
		font-size: 2rem;
		margin-bottom: 18px;
	}

	.btn_link {
		max-width: 540px;
		height: 72px;
		box-shadow: 2px 2px 3px #000000;
	}
}



/*==========
サイトフッター
==========*/
.site_footer {
	padding: 60px 0 12px;
	background-color: #ff8123;
}

.site_footer_logo {
	text-align: center;
	margin-bottom: 60px;
}

.site_footer_logo img {
	width: 120px;
	margin: 0 auto;
}

.site_footer_copy {
	font-size: 1.25rem;
	text-align: center;
	color: #FFF;
}

@media (min-width: 768px) {
	.site_footer {
		padding: 72px 0 15px;
	}

	.site_footer_logo {}

	.site_footer_logo img {
		width: 150px;
	}

	.site_footer_copy {
		font-size: 1.45rem;
	}
}


.top_scroll {
	position: fixed;
	bottom: 6px;
	right: 6px;
	z-index: 9999;
}

.top_scroll a {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 3px;
	width: 60px;
	height: 60px;
	background-color: rgb(33 150 243 / 80%);
	border-radius: 50%;
}

.top_scroll a span {
	color: #FFF;
}

.top_scroll a svg {
	height: 12px;
	fill: #FFF;
}

@media (min-width: 768px) {}
