@charset "UTF-8";

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2022/02/25
Author: a-motoki
*/
/**
CSS初期化
*/
header {
	width: unset;
	padding: 0;
	background: unset;
	margin-bottom: unset;
	background-size: contain;
}


.logo {
	text-align: center;
	background: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 65px;
}

footer {
	background: #8e732b;
}

.logo-img {
	width: 280px;
}

@media only screen and (max-width: 750px) {
	.logo {
		padding: 4vw 0;
	}

	.logo-img {
		width: 70%;
	}
}

main h2 { 
	color: #a4890a;
    border-bottom: 4px solid #a4890a;
    border-left: 4px solid #a4890a;
}

main h1 {
	@media only screen and (max-width: 750px) {
		border-bottom: 4px solid #b8b8b8;
	}
}

main {
	margin-top: -3vw;
	background-color: transparent;
}

body {
	background-size: contain;
	background-repeat: repeat;

}

.inner {
	background-color: #ffffff;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 28%);
}

/**
header画像表示制御
*/
.img_header_pc {
	max-width: 100%;
}

.img_header_sp {
	display: none;
}

@media only screen and (max-width: 750px) {
	.img_header_pc {
		display: none;
	}

	.img_header_sp {
		display: block;
		max-width: 100%;
		box-shadow: transparent;
	}
}

/**
footer画像表示制御
*/
.img_header_pc {
	max-width: 100%;
}

.img_header_sp {
	display: none;
}

.img_footer_sp {
	display: none;
}

@media only screen and (max-width: 750px) {
	.img_header_pc {
		display: none;
	}

	.img_header_sp {
		display: block;
		max-width: 100%;
	}

	.img_footer_sp {
		display: block;
		width: 100%;
	}

	footer {
		position: relative;
		background: transparent;
		padding: 0;
	}

	.footer_link_parent {
		position: absolute;
		z-index: 100;
		bottom: 3vw;
	    left: 50%;
	    transform: translateX(-50%);
	    width: 100%;
	}

	.inner {
		background-color:transparent;
		box-shadow: none;
	}
}