.program-title{
  display:flex;
  flex-direction: column;
  height: 25rem;
  background-color: #29363B;
  padding: 5rem 0; 
  background-image: url("../images/faq/bg.png");
  background-repeat: no-repeat;
  background-position:right;
}

.program-title__container{
  max-width: 128rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
.program-title__container::before{
  content: "";
  background-color: #AC0000;
  width: 6rem;
  height: .4rem;
  margin-bottom: .5rem; 
}

.program-title h1{
  margin: 0;
  color: #F0F0F0;
}

.program-title__background {
  font-weight: 600;
  font-size: 12rem;
  color: rgba(182,182,182,0.2);
}
@media screen and (max-width: 56.25rem) {
  .program-title__background {
      font-size: 7rem;
      overflow: hidden;
    }
  }

.program-content{
  background-color: #F0F0F0;
  padding: 4rem 0;
  /* min-height: calc(100vh - 54.4rem); */
}

.program-content__container{
  max-width: 128rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}

.que:first-child{
		border-top: .1rem solid black;
	}
	
.que{
	position: relative;
	padding: 1.7rem 0;
	cursor: pointer;
	border-bottom: .1rem solid #dddddd;
	
}
	
.que::before{
	display: inline-block;
	content: 'Q';
  font-weight: bold;
	color: #AC0000;
	margin: 0 .5rem;
}

.que.on>span{
	font-weight: bold;
}
	
.anw {
	display: none;
  overflow: hidden;
	padding: 2.7rem 0;
}
	
.anw::before {
	display: inline-block;
	content: 'A';
	font-weight: bold;
	color: #AC0000;
	margin: 0 .5rem;
}

.arrow-wrap {
  position: absolute;
  top:50%; right: 1rem;
  transform: translate(0, -50%);
}

.que .arrow-top {
  display: none;
}
.que .arrow-bottom {
  display: block;
}
.que.on .arrow-bottom {
  display: none;
}
.que.on .arrow-top {
  display: block; 
}
