@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Noto Sans JP", sans-serif;
}

.logo {
	margin: 0 auto;
	display: block;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	top: 260px;
}

.intro-cnt {
	max-width: 750px;
	margin: 0 auto;
	width: 100%;
}

.intro {
	padding-top: 100px;
	margin-bottom: 50px;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.8;
}


.intro-img {}

.-center {
	text-align: center;
	margin-bottom: 1rem;
}

.anker-link {
	display: flex;
	gap: 20px;
	margin-bottom: 35px;
	justify-content: center;
}

.anker-link a {
	display: inline-block;
	text-align: center;
	font-weight: bold;
	width: 100%;
	padding: 20px;
	border-radius: 10px;
	color: #fff;
	background-color: #E47431;
	border: 2px solid #E47431;
	text-decoration: none;
	position: relative;
	top: 0;
	transition:
		background-color 0.3s,
		color 0.3s;
}

.anker-link a:hover {
	color: #E47431;
	background-color: #fff;
	box-shadow: 0 0 0 #c45d22;
}

.method {
	padding: 20px 70px;
	text-align: center;
	max-width: 750px;
	margin: 0 auto 40px;
	width: 100%;
	background-color: #fbf6e8;
	font-weight: bold;
	border-radius: 20px;
}

.method ul {
	list-style: disc;
	text-align: justify;
    margin: 0 auto;
    width: 370px;
}

.method ul li,
.method p {
	font-weight: 700;
}

.red {
	color: #E1212D;
	margin-bottom: 10px;
	border-radius: 20px;
	font-weight: 700;
}

.sticker {
	/* display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center; */
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 40px;
	margin-bottom: 50px;
}

.sticker a {
	display: block;
	transition: opacity 0.3s;
}

.sticker a:hover {
	opacity: 0.7;
}

.sticker img {
	width: 100%;
	/* max-width: 180px; */
	display: block;
}

.pdf-cnt {}
.pdf-cnt ul {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.pdf-cnt ul li {}
.pdf-cnt ul li .img-cnt {
	height: 400px;
}
.pdf-cnt ul li img {
	width: 100%;
	max-width: 250px;
	display: block;
}
.pdf-cnt ul li a {
	display: inline-block;
	text-align: center;
	font-weight: bold;
	width: 100%;
	padding: 8px 20px;
	border-radius: 10px;
	color: #fff;
	background-color: #774A36;
	border: 2px solid #774A36;
	text-decoration: none;
	position: relative;
	top: 0;
	transition:
		background-color 0.3s,
		color 0.3s;
}
.pdf-cnt ul li a:hover {
	color: #774A36;
	background-color: #fff;
}

/* All SP & Tablet */
@media screen and (max-width:1030px) {
}

/* All SP */
@media screen and (max-width:640px) {
	body {
		font-family: "Noto Sans JP", sans-serif;
	}
	.logo {
		top: 210px;
	}

	.intro-cnt {
		max-width: 750px;
		margin: 0 auto;
		width: 100%;
	}

	.intro {
		margin-bottom: 50px;
		font-weight: bold;
		font-size: 16px;
		line-height: 1.8;
	}


	.intro-img {}

	.-center {
		text-align: center;
		margin-bottom: 1rem;
	}

	.anker-link {
		display: flex;
		gap: 15px;
        margin-bottom: 35px;
        justify-content: center;
        flex-direction: column;
	}

	.anker-link a {
		display: inline-block;
		text-align: center;
		font-weight: bold;
		width: 100%;
		padding: 20px;
		border-radius: 10px;
		color: #fff;
		background-color: #E47431;
		border: 2px solid #E47431;
		text-decoration: none;
		position: relative;
		top: 0;
		transition:
			background-color 0.3s,
			color 0.3s;
	}

	.anker-link a:hover {
		color: #E47431;
		background-color: #fff;
		box-shadow: 0 0 0 #c45d22;
	}

	.method {
		padding: 20px 40px;
		text-align: center;
		max-width: 750px;
		margin: 0 auto 40px;
		width: 100%;
		background-color: #fbf6e8;
		font-weight: bold;
		border-radius: 20px;
	}

	.method ul {
		list-style: disc;
		text-align: justify;
		margin: 0 auto;
		width: 100%;
	}

	.method ul li,
	.method p {
		font-weight: 700;
	}

	.red {
		color: #E1212D;
		margin-bottom: 10px;
		border-radius: 20px;
		font-weight: 700;
	}

	.sticker {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
		margin-bottom: 50px;
	}

	.pdf-cnt {}
	.pdf-cnt ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.pdf-cnt ul li {}
	.pdf-cnt ul li img {}
	.pdf-cnt ul li a {
		display: inline-block;
		text-align: center;
		font-weight: bold;
		width: 100%;
		padding: 20px;
		border-radius: 10px;
		color: #fff;
		background-color: #774A36;
		border: 2px solid #774A36;
		text-decoration: none;
		position: relative;
		top: 0;
		transition:
			background-color 0.3s,
			color 0.3s;
	}
	.pdf-cnt ul li a:hover {
		color: #774A36;
		background-color: #fff;
	}

	.pdf-cnt ul li .img-cnt {
		height: 270px;
	}

}