@charset "utf-8";

/* -----------------新アコーディオン----------------- */
details {
  --arrow-size: 18px;
  --anime-speed: 0.75s;
}
.detailsB {
  background-color: #f3f3f3;
  margin: 0 0 20px 0;
  width: 100%;
  animation-fill-mode: forwards;
}
.summary {
  position: relative;
  display: block;
  padding: 0 calc(var(--arrow-size) + 3em) 0.5em 1em;
  padding-top: 8px;
  cursor: pointer;
  background-color: #ffffff;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #e7e7e7;
  /* border-left: 10px solid #07285a; */
  height: 2.1em;
  &:hover {
    cursor: pointer;
  }
}
.summary::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 1.2em;
  background: #20519b;
  border-radius: 0.2em;
  position: absolute;
  top: 0;
  left: 17px;
  margin-left: -16px; 
}
.summary::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 0.9em;
  background: #07285a;
  border-radius: 0 0 0.2em 0.2em;
  position: absolute;
  bottom: 0;
  left: 17px;
  margin-left: -16px; 
}
/* .summary::before {
  content: "Q.";
  position: absolute;
  top: 0.75em;
  left: 1.5em;
} */
.summary .ico {
  position: absolute;
  top: 0;
  right: 1.5em;
  bottom: 0;
  display: block;
  width: var(--arrow-size);
  height: calc(var(--arrow-size) * 0.6);
  margin: auto;
  background: #07285a;
  clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
  transition: 0.5s;
  animation-fill-mode: forwards;
}
/* .detailsB[open] .summary .ico {
  transform: rotate(180deg);
} */
.detailsB .answer-inner {
  position: relative;
  padding: 1.5em 0.5em 1.5em 0.5em;
  font-size: 17px;
  background-color: white;
  overflow-wrap: break-word;
}
div.break {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  overflow-wrap: break-word;
  & .tableA tr td.time {
    color: #07285a;
    font-weight: bold;
  }
}

/* .detailsB .answer-inner::before {
  content: "A.";
  font-weight: bold;
  position: absolute;
  top: 1.5em;
  left: 2.5em;
} */
.summary::-webkit-details-marker {
  /* Safari-デフォルトの三角形を削除*/
  display: none;
}
.answer {
  overflow: hidden;
  /* padding・marginはここでは設定しない */
}
.answerInner {
  padding: 0 20px 20px;
}
@media only screen and (max-width: 768px) {
  .summary .ico {
    right: 0.75em;
    width: calc(var(--arrow-size) * 0.75);
    height: calc(var(--arrow-size) * 0.45);
  }
  .detailsB .answer-inner {
    padding: 0.5em;
    font-size: 12.5px;
  }
}
