@charset "utf-8";
/* CSS Document */

/*==========
変数
==========*/
:root {
	--bg_color1: #F7F7F7;
	--bg_color2: #f5ffea;
	--font_color1: #292929;
	--main_color: #D6FF33;
	--sub_color1: #275B00;
	--sub_color2: #FF9233;
	--sub_color3: #275B00;
	--sub_color4: #ffcc06;
	--border_color1: #cfcfcf;
	--footer_color: #F7F7F7;
	--a_color: #0e94ff;
	--a_hover_color: #FF9233;
}


/*==========
共通
==========*/
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	height: 100%;
}

body {
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	font-size: clamp(1.6rem, 1.7vw, 1.8rem);
	font-weight: 400;
	line-height: 1;
	color: var(--font_color1);
	font-feature-settings: "palt"1;
	-webkit-text-size-adjust: 100%;
	background-color: #f5ffea;
	position: relative;
	margin: 0;
	overflow-wrap: break-word;
	min-height: 100svh;
}

a {
	color: var(--a_color);
	text-decoration: none;
	transition: .3s;
}

a:hover,
a:active {
	transition: .3s;
	color: var(--a_hover_color);
}

body {
	animation: fade .3s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

img {
	max-width: 100%;
	height: auto;
}

section {
	padding: clamp(3rem, 6vw, 6rem) 0;
}

.wrap {
	width: 100%;
	background-color: var(--bg_color2);
	min-height: calc(100svh - 90px);
	padding-bottom: 10rem;
}

.container {
	padding: 2rem;
}


@media (min-width: 768px) {

	.wrap,
	.container {
		width: 640px;
		margin-inline: auto;
	}
}

.bg_color {
	background-color: var(--bg_color1);
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}


/*==========
MV
==========*/
.mv {}


/*==========
セクション
==========*/
h1 {
	font-size: clamp(2.6rem, 2.8vw, 3.2rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	margin: 4rem 0 3rem;
}


.lead {
	line-height: 1.65;
	width: 90%;
	margin: 0 auto 3rem;
}


/*==========
リンクリスト
==========*/
.link_list {
	width: 90%;
	margin: 0 auto;
}

.link_list .item {
	margin-bottom: 2rem;
	background-color: #FFF;
	padding: 4rem 2rem;
	border: solid 2px #bfc5bf;
	border-radius: 12px;
}

.link_list .item .title {
	font-size: 2rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 1rem;
	position: relative;
	padding-left: 12px;
}

.link_list .item .title::before {
	content: "";
	width: 8px;
	height: 30px;
	background: #d4ff00;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	margin: -15px 0 0 0;
}

.link_list .item .url {
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.link_list .item p {
	line-height: 1.65;
}




/*==========
フッター
==========*/
.site_footer {
	background-color: var(--main_color);
	text-align: center;
	padding-top: 5rem;
}

.site_footer_copyright {
	font-size: clamp(1.25rem, 1.4vw, 1.4rem);
}



/*==========
404ページ
==========*/
.not_found {
	height: 100vh;
	padding-top: 60px;
}

.not_found h1 {
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 2rem;
}

.not_found_body {
	width: 90%;
	margin: 0 auto;
}

.not_found_body p {
	line-height: 1.6;
	margin-bottom: 60px;
}

.section_link {
	display: grid;
	place-items: center;
	background-color: var(--a_color);
	height: 60px;
	max-width: 420px;
	margin: 0 auto;
}

.section_link span {
	color: #FFF;
	font-weight: 700;
}
