* {
	margin: 0px;
	padding: 0px;
	border: 0;
	outline: 0;
	color: rgb(38, 39, 41);
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-size-adjust: none;
}

body {
	font-size: 16px;
	background-color: rgb(255, 255, 255);
	color: rgb(38, 39, 41);
	line-height: 150%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

ul {
	list-style: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 1 00%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
}

input, select {
	appearance: none;
}

#container01 {
	font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN",
		Meiryo, メイリオ, sans-serif;
	flex: 1;
}

#header {
	margin: 1em 0;
	width: 100%;
	text-align: center;
}

#header img {
	width: 180px;
	height: 100%;
}

#container02 {
	display: block;
	margin: 0 auto;
	width: 80%;
	max-width: 800px;
}

/*言語選択メニュー*/
#header-search-area {
	position: relative;
}

#header-search-area::before, #header-search-area::after {
	position: absolute;
	content: '';
	pointer-events: none;
}

#header-search-area::before {
	display: inline-block;
	width: 30px;
	height: 30px;
	right: 0;
}

#header-search-area::after {
	position: absolute;
	width: 8px;
	height: 8px;
	top: 18px;
	right: 25px;
	border-bottom: 3px solid #d3dce2;
	border-right: 3px solid #d3dce2;
	transform: translate(50%, -50%) rotate(45deg);
}

#selLocale {
	position: absolute;
	padding: 0 10px;
	width: 105px;
	height: 40px;
	right: 10px;
	color: #3B3D40;
	font-size: 12px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

#selLocale:focus {
	outline: none;
}

#selLocale:hover {
	background: #f2f5f8;
}

/*タイトル*/
h2 {
	margin-top: 50px;
	font-size: 40px;
}

.h2-span {
	display: inline-block;
	margin-left: 10px;
	font-size: .4em;
	font-weight: normal;
}

/*文字、リンク*/
.contents p {
	margin-bottom: 30px;
	font-size: 13px;
}

.faq-link {
	margin-top: 15px;
	margin-bottom: 39px;
	padding: 10px 0;
	border: 2px solid #333;
	border-radius: 5px;
}

.faq-link img {
	display: block;
	margin: 0 auto;
	width: 200px;
	height: auto;
	transition: .1s;
}

.faq-link:hover img {
	opacity: 0.7;
}

#service-list>a:last-child .faq-link {
	margin-bottom: 0;
}

.return-link {
	text-align: right;
}

.return-link a {
	display: inline-block;
	margin-top: 20px;
	padding-bottom: 5px;
	color: rgb(38, 39, 41);
	text-decoration: none;
	border-bottom: 1px solid #fff;
}

.return-link a:hover {
	border-bottom: 1px solid rgb(38, 39, 41);
}

/*フッター*/
#footer {
	position: relative;
	margin: 100px 0 0;
	width: 100%;
	height: 70px;
	background: rgb(38, 39, 41);
	font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN",
		Meiryo, メイリオ, sans-serif;
}

address {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	color: #fff;
	font-size: 13px;
	font-style: normal;
}

#error-container {
	position: relative;
	font-size: 13px;
}

#error-container p {
	margin-top: 25px;
}

#error-container a {
	display: inline-block;
	color: rgb(38, 39, 41);
	border-bottom: 1px solid #fff;
	text-decoration: none;
	font-weight: bold;
}

#error-container a:hover {
	border-bottom: 1px solid rgb(38, 39, 41);
}

.line {
	margin: 10px 0;
	border-bottom: 1px solid #8d8d8d;
}

.red {
	padding-right: 5px;
	color: #dc143c;
}

/*＝＝＝＝＝＝モバイル＝＝＝＝＝＝*/
@media screen and (max-width: 767px) {
	body {
		font-size: 0.8em;
	}
	#header img {
		width: 130px;
	}
	#container02 {
		width: 85%;
	}

	/*言語選択メニュー*/
	#header-search-area::after {
		width: 7px;
		height: 7px;
		top: 13px;
		right: 22px;
	}
	#selLocale {
		padding: 0 8px;
		width: 75px;
		height: 30px;
		right: 10px;
		font-size: 11px;
	}

	/*タイトル*/
	h2 {
		margin-top: 30px;
		font-size: 30px;
	}

	/*文字、リンク*/
	.contents p {
		margin-bottom: 20px;
		font-size: 12px;
		line-height: 200%;
	}
	.faq-link {
		margin-top: 5px;
		margin-bottom: 24px;
		padding: 5px 0;
	}
	.faq-link img {
		width: 120px;
	}
	.return-link a {
		margin-top: 10px;
		padding-bottom: 3px;
	}

	/*フッター*/
	#footer {
		margin: 80px 0 0;
		height: 50px;
	}
	address {
		font-size: 10px;
		white-space: nowrap;
		text-align: center;
		max-width: 90vw;}
}