@charset "utf-8";

html{
	width: 100%;
	height: 100%;
	font-size: 62.5%;
	max-width: 1500px;
    margin: 0 auto;
    overflow-x: hidden;
}

body{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	min-height: 100%;
	font-size: 14px;
	line-height: 1.5;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
}

input, textarea, select {
	font-size: 100%;
	font-family: inherit;
}

input, textarea {
	padding: 10px;
}

select {
	padding: 10px 5px;
}

input[type=submit] {
	padding: 0;
}

textarea {
	border: 1px solid #7d7d7d;
	width: calc(100% - 20px);
}

button {
	font-family: inherit;
	font-size: inherit;
	color: #5e6c6d
}

a {
	color: #000000;
	text-decoration: none;
}

#container h2 {
	font-size: 4rem;
	font-weight: normal;
	margin: 0.5em 0;
}

#logo {
	background: #71b53d;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 14px;
	padding-bottom: 14px;
	height: 76px;
}

	#logo a {
		color: #fff;
	}

	#logo .title {
		font-size: 22px;
		line-height: 25px;
		text-align: center;
		font-weight: bold;
		margin-left: 10px;
		letter-spacing: 1px;
	}

	#logo .title div {
		font-size: 30px;
	}

#container {
	-webkit-flex: 1;
	flex: 1 1 auto;
}

.clear::after {
    content: '';
    display: block;
    clear: both;
}

.text_left {
	text-align: left;
}

.text_center {
	text-align: center;
}

.mr10 {
	margin-right: 10px;
}

.message {
    color: red;
    font-weight: bold;
}

.error {
	text-align: center;
	margin-top: 3em;
}

footer {
	background: #71b53d;
	color: #fff;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 3em;
	font-size: 12px;
}

/* PC用 */
@media screen and (min-width: 751px) {
	.pc_only_block {
		display: block !important;
	}
	
	.pc_only_inline {
		display: inline !important;
	}
	
	.mb_only_block,
	.mb_only_inline {
		display: none !important;
	}
	
	.mobile_menu {
		display: none;
	}
}

/* スマホ用 */
@media screen and (max-width: 750px) {
	.pc_only_block,
	.pc_only_inline {
		display: none !important;
	}
	
	.mb_only_block {
		display: block !important;
	}
	
	.mb_only_inline {
		display: inline !important;
	}
	
	#logo {
		padding-top: 4px;
		padding-bottom: 4px;
		height: 56px;
	}
	
	#logo .title {
		font-size: 18px;
	}
	
	#logo .title div {
		font-size: 23px;
	}

	#logo img {
		width: 80px;
	}
	
	h2 {
		font-size: 26px;
	}

}
