@charset "UTF-8";


/* contents detail style
----------------------------------------------*/

.q_col {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: normal;
  padding: 24px;
  font-size: 24px;
  max-width: calc(1000px + (24px * 2));
  margin: auto;
}

.q_col::before {
  content: "Q";
  font-weight: 700;
  color: #fff;
  background: #000;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.q_col .txt {
  padding: 0;
}

.a_col {
  background: #F7F7F5;
  padding: 0 0 3em 0;
}

.a_col .inner {
  padding: 24px;
  margin: auto;
  max-width: calc(1000px + (24px * 2));
}

.a_col .a_summary {
  font-size: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
  cursor: pointer;
  transition: all .5s ease;
  line-height: 1.5em;
}

.a_col .a_summary::before {
  content: "A";
  font-weight: 700;
  color: #fff;
  background: linear-gradient(94deg, #D30F1A 0%, #F6B320 100%);
  background: -webkit-linear-gradient(4deg, #D30F1A 0%, #F6B320 100%);
  width: 50px;
  height: 50px;
  margin-right: 20px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.a_summary .txt {
  flex-grow: 3;
}

.icon_open {
  position: relative;
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border: 1px solid #999;
  border-radius: 50%;
}

.icon_open {
  position: relative;
  display: block;
  margin: 0 0 0 3%;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.icon_open::before,
.icon_open::after {
  position: absolute;
  content: '';
  display: block;
  width: 15px;
  height: 1px;
  background-color: #999;

}

.icon_open::before {
  top: 48%;
  left: 7px;
  transform: rotate(0deg);

}

.icon_open::after {
  top: 48%;
  left: 7px;
  transform: rotate(90deg);

}

.close .icon_open::before {
  transform: rotate(45deg);
}

.close .icon_open::after {
  transform: rotate(-45deg);
}



.a_col .a_detail {
  display: none;
  padding-top: 1rem;
}

@media not screen and (max-width: 780px) {}

@media screen and (max-width: 780px) {

  .q_col,
  .q_col::before,
  .a_col .a_summary,
  .a_col .a_summary::before {
    font-size: 18px;
  }

  .q_col::before,
  .a_col .a_summary::before {
    width: 30px;
    height: 30px;
    padding: 0;
    margin-right: 3%;
  }

}