@charset "UTF-8";

html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	word-break: break-word;
	-moz-tab-size: 4;
	tab-size: 4;
}

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

a {
	color: #007aff;
	text-decoration: none;
}
a:hover {
	opacity: 0.8;
}

header {
	color: #ffffff;
	background-color: #263242;
	padding: 10px 0;
}
header > .header_inner {
	max-width: 1260px;
	padding: 0 15px;
	margin: 0 auto;
	text-align: left;
}
header #logo {
	max-width: 100%;
	display: block;
}

main {
	padding: 50px 0;
}
main > .main_inner {
	max-width: 1260px;
	padding: 0 20px;
	margin: 0 auto;
}

h1 {
	font-size: 48px;
	font-weight: normal;
	text-align: center;
	margin-bottom: 40px;
}

section {
	margin-bottom: 40px;
}
section .section_title {
	font-size: 24px;
	font-weight: normal;
	padding: 0 15px 0 20px;
	margin-bottom: 20px;
	position: relative;
}
section .section_title:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	bottom: 0;
	width: 5px;
	height: 100%;
	border-radius: 3px;
	margin: 0;
	background-color: #007aff;
}

.anc_btns {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.anc_btns > .anc_btn {
	color: #ffffff;
	background-color: #007aff;
	border-radius: 5px;
	padding: 15px 25px;
	width: 23%;
	text-align: center;
	position: relative;
}
.anc_btns > .anc_btn:after {
	position: absolute;
	content: "";
	display: block;
	height: 13px;
	top: 0;
	right: 10px;
	bottom: 0;
	margin: auto 0;
	border-top: 13px solid #ffffff;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
}

.faq {
	margin-bottom: 30px;
}
.faq .question {
	font-size: 20px;
	font-weight: bold;
	border: 1px solid #fe7374;
	padding: 15px 15px 15px 40px;
	text-indent: -26px;
	margin-bottom: 15px;
	position: relative;
}
.faq .question:before {
	position: relative;
	content: "Q.";
	font-size: 20px;
	font-weight: bold;
	color: #fe7374;
	margin-right: 5px;
}
.faq .answer {
	padding: 0 15px 0 40px;
	text-indent: -26px;
	position: relative;
}
.faq .answer:before {
	position: relative;
	content: "A.";
	font-size: 20px;
	font-weight: bold;
	color: #007aff;
	margin-right: 5px;
}

@media screen and (max-width: 1020px) {
	.anc_btns {
		flex-wrap: wrap;
	}
	.anc_btns > .anc_btn {
		padding: 15px 25px;
		width: 49%;
		font-size: 22px;
		font-weight: bold;
	}
	.anc_btns > .anc_btn:nth-child(n + 3) {
		margin-top: 15px;
	}
}
@media screen and (max-width: 750px) {
	header {
		padding: 6px 0;
	}
	header #logo {
		width: 180px;
	}
	main {
		padding: 40px 0;
	}
	h1 {
		font-size: 36px;
		margin-bottom: 30px;
	}
	section {
		margin-bottom: 30px;
	}
	section .section_title {
		font-size: 20px;
		padding: 0 10px;
		margin-bottom: 15px;
	}
	.anc_btns > .anc_btn {
		padding: 10px 25px 10px 10px;
		font-size: 2.667vw;
		text-align: left;
	}
	.anc_btns > .anc_btn:nth-child(n + 3) {
		margin-top: 10px;
	}
	.anc_btns > .anc_btn:after {
		height: 8px;
		border-top: 8px solid #ffffff;
		border-right: 5px solid transparent;
		border-left: 5px solid transparent;
	}
	.faq {
		margin-bottom: 20px;
	}
	.faq .question {
		font-size: 18px;
		padding: 10px 15px 10px 40px;
		margin-bottom: 10px;
	}
	.faq .question:before {
		font-size: 18px;
	}
	.faq .answer {
		border: 1px solid #007aff;
		padding: 10px 15px 10px 40px;
		text-indent: -26px;
	}
	.faq .answer:before {
		font-size: 18px;
	}
	.accordion dt {
		position: relative;
		padding-right: 30px!important;
		cursor: pointer;
	}
	.accordion dt:after {
		position: absolute;
		content: "";
		display: block;
		height: 13px;
		top: 0;
		right: 10px;
		bottom: 0;
		margin: auto 0;
		border-top: 13px solid #fe7374;
		border-right: 8px solid transparent;
		border-left: 8px solid transparent;
	}
	.accordion dt.active:after {
		transform: rotate(180deg);
	}
	.accordion dd {
		display: none;
	}
}