@charset "UTF-8";
*{
    box-sizing: border-box;
}
/* FAQ
---------------------*/
/* 緊急お知らせ非表示 */
.systemTicker{
  display: none;
}
/* space */
.faq_mb-15 {
  margin-bottom: 15px;
}
.faq_mb-20 {
  margin-bottom: 20px;
}

/* layout */
.faq_contentArea {
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  /* PC時背景固定 */
  /* .faq_bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background: url() no-repeat bottom;
    background-size: max(100%,1366px);
  } */
  .faq_contentArea {
    position: relative;
    z-index: 2;
    width: min(375px, 100%);

    margin-inline: auto;
  }
}

/* heading */
.faq_head {
  padding-top: 60px;
  padding-bottom: 60px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #3a3a3a;
}

/* accordion */
.faq_accordion {
  max-width: 500px;
  background-color: #fafafa;
  margin-inline: auto;
}

.faq_accordion:not([open]) {
  margin-bottom: 2px;
}

.faq_accordion summary {
  position: relative;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  padding: 1em 2em;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background-color: #900000;
  cursor: pointer;
}

.faq_accordion summary::-webkit-details-marker {
  display: none;
}

.faq_accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 14px;
  height: 8px;
  margin-left: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10.519' viewBox='0 0 16 10.519'><path d='M194.5,118.983l-7.753-8.86a1,1,0,0,1,1.505-1.317l6.247,7.14,6.247-7.14a1,1,0,0,1,1.505,1.317Z' transform='translate(202.5 118.983) rotate(180)' fill='%23fff'/></svg>");
  transform: translateY(-50%) rotateX(180deg);
  transition: transform .3s;
}

.faq_accordion[open] summary::after {
  transform: translateY(-80%) rotate(0deg);
}

.faq_accordion > .faq_body {
  margin: 0;
  padding: 30px;
  color: #333;
  transform: translateY(-10px);
  opacity: 0;
}

.faq_accordion[open] > .faq_body {
  transform: none;
  opacity: 1;
}
.faq_text {
  font-size: 14px;
}
.faq_ttl {
  font-weight: 700;
  font-size: 16px;
  color: #900000;
}
.faq_ttl-md {
  font-weight: 700;
  font-size: 15px;
  color: #454545;
}
.faq_body > *,
.faq_body > dl > * {
  margin-bottom: 30px;
}
