@charset "utf-8";

.separate{
  display: flex;
  gap: 6rem;
}

.l_container{
  position: relative;
}

.float_nav{
  width: 220px;
  font-size: 1.6rem;
  font-weight: 600;
  position: sticky;
  top: 100px;
  left: 0;
  padding-bottom: 100px;
}

.float_nav li{
  margin-bottom: 3.2rem;
}

.float_nav li a{
  padding-left: 14px;
	position: relative;
}

.float_nav li a::before{
  position: absolute;
	content: '';
	background: #00812B;
	width: 10px;
	height: 10px;
	top: 3px;
	left: 0px;
}



.qa-ttl {
  padding: .0em .8em;
  border-left: 5px solid #00812C;
  font-weight: 300;
  font-size: 2.8rem;
  margin-bottom: 48px;
}

.r_container{
  width: calc(100% - 280px);
}

.qa_section{
  background: #fff;
  padding: 60px;
  border-radius: 15px;
  margin-bottom: 30px;
}

@media(max-width: 1024px){
  .float_nav{
    width: 160px;left: 0;
    padding-bottom: 60px;
  }
  .r_container{
  width: calc(100% - 160px);
}
}

@media(max-width: 840px){
  .separate{
    display: block;
  }
  .float_nav{
    width: 100%;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .float_nav li{
    border-right: 1px solid #9A927F;
    padding: 0 20px;
  }
  .r_container{
  width: 100%;
}
}

/* 

.sort_nav li + li::before{
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: #9a927f;
} */

.qa-6 {
    margin-bottom: 5px;
    border-bottom: 1px dotted #9A927F;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 2em;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 0em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #00812C;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #9A927F;
    border-right: 3px solid #9A927F;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #BF8A35;
    line-height: 1.2;
    content: "A";
}
