
@charset "UTF-8";


.view-sp{
	display: none;
}
.faq {
  padding: 6em 0;
}
.faq .parent + .parent {
  margin-top: 2em;
}
.faq .parent > dt {
  position: relative;
  background-color: #5e6d59;
  color: #fff;
  padding: .5em 1em;
  font-size: 20px;
  font-weight: 700;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
}
.faq .parent > dt::before,
.faq .parent > dt::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.faq .parent > dt::before {
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 2px;
  height: 20px;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
}
.faq .parent > dt::after {
  top: 50%;
  transform: translateY(-50%);
  right: 21px;
  width: 20px;
  height: 2px;
}
.faq .parent > dd {
  display: none;
}

.faq .children {
  border-bottom: 1px solid #333;
}
.faq .children > dt {
  position: relative;
  background-color: #E0D9D3;
  font-weight: 700;
  padding: .5em 1em;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
}
.faq .children > dt::before,
.faq .children > dt::after {
  content: "";
  position: absolute;
  background-color: #333;
}
.faq .children > dt::before {
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 2px;
  height: 20px;
  transition-property: all;
  transition-duration: .3s;
  transition-timing-function: ease;
}
.faq .children > dt::after {
  top: 50%;
  transform: translateY(-50%);
  right: 21px;
  width: 20px;
  height: 2px;
}
.faq .children > dd {
  background-color: #EAE6E4;
  padding: .5em 1em;
  display: none;
}
.faq .children > dt p,
.faq .children > dd p {
  position: relative;
  
}
.faq .children > dt p {
  padding: 0 4em 0 2em;
}
.faq .children > dd p {
  padding: 0 0 0 2em;
}
.faq .children > dt p::before,
.faq .children > dd p::before {
  position: absolute;
  left: 0;
  top: .2em;
  line-height: 1;
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.faq .children > dt p::before {
  content: "Q";
}
.faq .children > dd p::before {
  content: "A";
	color: #7b5422;
}

.faq .parent > dt.active::before,
.faq .children > dt.active::before {
  opacity: 0;
}
.faq a[href^="tel:"]{
	pointer-events:initial;
}
.faq a{
	color: #333;
	text-decoration: underline;
	font-weight: bold;
}
.faq a:hover{
	opacity: 0.7;
}

@media (hover: hover) {
  .faq .parent > dt:hover,
  .faq .children > dt:hover {
    opacity: .6;
    cursor: pointer;
  }
}
@media screen and (max-width: 576px){
	.view-sp{
		display: block;
	}
}
