
/* ----------------------------------------

- qa

---------------------------------------- */
.qa_sec {
  margin-top: 90px;
}
.qa_sec_tit {
  text-align: left;
}
@media only screen and (max-width: 737px){
  .qa_sec {
    margin-top: 70px;
  }
}
/* ----------------------------------------

- qaLink

---------------------------------------- */
#qaLink {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin-left: -10px
}
#qaLink > li {
  text-align: center;
  display: flex;
  width: calc(25% - 10px);
  margin-left: 10px;
}
#qaLink > li > a {
  width: 100%;
  display: block;
  background: #F5F8EC;
  color: #2D9819;
  border: 2px solid #2D9819;
  box-shadow: 
    0px 5px 0px 0px #2D9819, 
    0px 8px 8px 0px rgb(0 0 0 / 16%);
  margin-bottom: 5px;
  border-radius: 24px;
  padding: 20px 15px;
  transition: none;
}
#qaLink > li > a > .icon {
  display: inline-block;
  padding-right: 2em;
  background-image: url(../img/common/icon_arw_circle_bottom_green.svg);
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: center right;
}
@media only screen and (max-width: 737px){
  #qaLink {
    font-size: 15px;
    margin-top: -10px;
  }
  #qaLink > li {
    width: calc(50% - 10px);
    margin-top: 10px;
  }
  #qaLink > li > a {
    border-radius: 12px;
    padding: 15px;
  }
}

/* ----------------------------------------

- qaList

---------------------------------------- */
.qaList > li {
  border-bottom: 1px solid #E5E5E5;
}
.qaList > li:first-child {
  border-top: 1px solid #E5E5E5;
}
.qaList > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 0;
}
.qaList > li > a:before {
  content: "Q";
  font-size: 166%;
  line-height: 1;
  font-weight: 700;
  color: #2D9819;
  padding: 0 20px;
}
.qaList > li > a::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../img/common/icon_arw_circle_right_green.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0 20px;
  margin-left: auto;
}
@media only screen and (max-width: 737px){
  .qaList > li > a:before {
    padding: 0 20px 0 0;
  }
  .qaList > li > a::after {
    background-position: center right;
    padding: 0 0 0 20px;
    margin-left: auto;
  }
}
/* ----------------------------------------

- single

---------------------------------------- */
.single #sidebar {
  width: 23%;
  float: left;
  margin-top: 0;
}
.single #main {
  width: 73%;
  float: right;
  margin-top: 0;
}
@media only screen and (max-width: 1200px){
  .single #sidebar {
    width: auto;
    float: none;
    margin-top: 70px;
  }
  .single #main {
    width: auto;
    float: none;
    margin-top: 0;
  }
}
/* sidebar
------------------------------- */
.single #sidebar .sidebar_tit {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.single #sidebar .qaList > li > a {
  align-items: flex-start;
}
.single #sidebar .qaList > li > a::after {
  display: none;
}
.single #sidebar  .qaList > li > a:before {
  padding-left: 0;
  padding-right: 15px;
}

/* qa_detail_cont
------------------------------- */
.qa_detail_cont a:not(.btn01) {
  text-decoration: underline;
}
.qa_detail_cont a:not(.btn01):hover {
  text-decoration: none;
}
.qa_detail_cont {
  padding-bottom: 70px;
  margin-bottom: 70px;
  border-bottom: 1px solid #C3C3C3;
}
@media only screen and (max-width: 737px){
  .qa_detail_cont {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}
/*  title */
.qa_a_wrap h2 {
	font-size: 24px;
	border-left:5px solid #B48B55;
	border-bottom: 2px solid #efefef;
	padding:0 0 5px 10px;
	margin:2em 0 .83em 0;
	font-weight: bold;
}
.qa_a_wrap h3 {
	font-size: 19px;
	font-weight: bold;
	margin-bottom:.5em;
}
@media only screen and (max-width: 737px){
  .qa_a_wrap h2 {
    font-size: 19px;
  }
  .qa_a_wrap h3 {
    font-size: 16px;
  }
}
/*** dl ***/
.qa_a_wrap dl {
	margin:1em 0 1em 2em;
}
.qa_a_wrap dl > dt {
	font-weight: bold;
}
.qa_a_wrap dl > dd {
	margin-bottom:1em;
}
/*** ul ***/
.qa_a_wrap ul  {
  margin: 1em 0 1em 2em;
  display: block;
  list-style-type: disc;
}
.qa_a_wrap ul > li {
  list-style-type: disc;
  text-align: -webkit-match-paren;
  margin-bottom: 0.5em;
}
.qa_a_wrap ul >li:before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #1F0031;
	position: absolute;
	left: 0;
	top: .75em;
	transform: translateY(-50%);
}
/*** ol ***/
.qa_a_wrap ol {
  margin: 1em 0 1em 2em;
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}
.qa_a_wrap ol > li {
  text-indent: -1.3em;
  /* padding-left: 1.3em; */
  margin-bottom: 0.5em;
}
.qa_a_wrap ol > li:before {
  counter-increment: item;
  content: counter(item)'.';
  padding-right: .5em;
}