/****************************************************	
	Q&A
****************************************************/
.h1 {
 	border-bottom: 2px solid #004EA2;
	font-size: 19px;
	padding-bottom: 13px;
	display: flex;
	align-items: center;
	margin-bottom: 25px;
	font-weight: bold;
}

#filterFormWrap {
  	background-color: #F8F8F8;
	display: flex;
	align-items: center;
	margin-bottom: 0px;
	padding: 20px 20px;
}

#filterFormWrap p {
	margin: 0 10px 0 0;
	padding: 0;
	font-weight: bold;
}

#filterFormWrap #filterForm {
  	border: 1px solid #004EA2;
	display: flex;
	background-color: #fff;
	flex: 1;
}

#filterFormWrap #filterForm input[type=search] {
  	border: none;
	outline: none;
	width: calc(100% - 40px);
	padding: 10px 15px;
	background-color: #fff;
}

#filterFormWrap #filterForm button {
  background-image: url(ico_search.svg);
	background-repeat: no-repeat;
	width: 40px;
	background-size: 28px auto;
	background-color: transparent;
	background-position: 50%;
	border: none;
	outline: none;
	cursor: pointer;
}


.qa_wrap {
	margin-bottom: 50px;
}

.qa_wrap .common_qa {
	border-bottom: 1px solid #C4C4C4;
}

.qa_wrap .common_qa.open dt:after {
  transform: rotate(225deg);
}

.qa_wrap .common_qa dt {
  	position: relative;
	padding: 10px 46px 20px 24px;
}

.qa_wrap .common_qa dt:hover {
  	cursor: pointer;
}

.qa_wrap .common_qa dt .question {
	color: #d10412;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 10px;
}

/*矢印上下*/
.qa_wrap .common_qa dt:after {
  content: "";
	width: 8px;
	height: 8px;
	border: 0px;
    border-bottom: solid 3px #004EA2;
	border-right: solid 3px #004EA2;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 10px);
	right: 22px;
	transition: 0.3s all;
}

/*答え欄*/
.qa_wrap .common_qa dd {
  	display: none;
	position: relative;
	padding: 13px 30px 10px 46px;
    background-color: #FAF7EB;
	line-height: 155%;
	border-radius: 5px;	

	font-size: 11pt;
	letter-spacing: .5px;

}

/*答え欄Q文字*/
.qa_wrap .common_qa dd .answer {
	color: #004EA2;
	font-weight: bold;
	position: absolute;
	top: 13px;
	left: 20px;
}


/****************************************************	
	タブ
****************************************************/
.tabcg {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
}

.tabcg > label {
    flex: 1 1;
    order: -1;
    opacity: .5;
    min-width: 70px;
    padding: .6em 1em;
    border-radius: 2px;
    background-color: #004EA2;
    color: #fff;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
	font-weight: bold;
}

.tabcg > label:hover {
    opacity: .9;
}

.tabcg input {
    display: none;
}

.tabcg > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.tabcg label:has(:checked) {
    opacity: 1;
}

.tabcg label:has(:checked) + div {
    display: block;
}

/****************************************************	
	ボックス
****************************************************/
.box_net {
	padding: 1px 3px 0px 3px;
	margin-left: 5px;
	color: #0071BC;
	border: 1px solid #0071BC;
	background-color: #DFF2FC;
	font-size: 7pt;
	text-align: center;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-o-border-radius: 2px;
	-ms-border-radius: 2px;
}


.box_tv {
	padding: 1px 3px 0px 3px;
	margin: 5px;
	color: #F15A24;
	border: 1px solid #F15A24;
	background-color: #FEF1E6;
	font-size: 7pt;
	text-align: center;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-o-border-radius: 2px;
	-ms-border-radius: 2px;
}


.box_tel {
	padding: 1px 3px 0px 3px;
	margin: 5px;
	color: #006837;
	border: 1px solid #006837;
	background-color: #E0F0E2;
	font-size: 7pt;
	text-align: center;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-o-border-radius: 2px;
	-ms-border-radius: 2px;
}

.box_etc {
	padding: 1px 3px 0px 3px;
	margin: 5px;
	color: #333333;
	border: 1px solid #333333;
	background-color: #F2F2F2;
	font-size: 7pt;
	text-align: center;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	-o-border-radius: 2px;
	-ms-border-radius: 2px;
}

/****************************************************	
	ボタン
****************************************************/
.reset_btn{
  width: 260px;
  padding: 10px 3px 5px 3px;
  position: relative;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  transition: all .2s;
  line-height: 1.2;
  border: 1px solid #004EA2;
  margin-bottom: 20px;
}

.reset_btn:hover{
	background-color: #DFF2FC;
	border: 1px solid #C7E8FA;
	color:#004EA2;
}

/****************************************************	
	スクロールトップ
****************************************************/
#page-top {
	height: 36px;
	width: 36px;
	position: fixed;
	right: 30px;
	bottom: 30px;
	background: #fff;
	border: solid 1px #004EA2;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}

#page-top a {
	height: 10px;
	width: 10px;
	border-top: 3px solid #004EA2;
	border-right: 3px solid #004EA2;
	transform: translateY(20%) rotate(-45deg);
	display: block;
}

#page-top:hover {
	text-decoration: none;
	opacity: .5;
}












