/**
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {@include fontSize(12px);}
 * 
 */
.pageHeader__copy {
  font-size: clamp(1rem, 0.8557692308rem + 0.641025641vw, 1.625rem) !important;
}
.pageHeader__aList {
  list-style: none;
  display: flex;
  gap: clamp(10px, 7.6923076923px + 0.641025641vw, 20px);
  width: 100%;
  flex-wrap: wrap;
}
.pageHeader__aItem {
  padding: 0;
}
.pageHeader__aItem:before {
  content: none;
}

.contentsBody .section {
  margin-bottom: 70px;
}
.contentsBody .faq__list {
  list-style: none;
}
.contentsBody .faq__item {
  border: 1px solid var(--color-txt);
  border-radius: 30px;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 0 clamp(15px, 9.2307692308px + 1.6025641026vw, 40px);
  box-sizing: border-box;
}
.contentsBody .faq__item:before {
  content: none;
}
.contentsBody .faq__q {
  font-weight: 500;
}
.contentsBody .faq__a {
  margin: 0;
}
.contentsBody .acd__toggle {
  position: relative;
  font-weight: 500;
  box-sizing: border-box;
  padding-top: clamp(15px, 11.5384615385px + 0.9615384615vw, 30px);
  padding-bottom: clamp(15px, 11.5384615385px + 0.9615384615vw, 30px);
  transition: 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition-property: height, padding;
  cursor: pointer;
}
.contentsBody .acd__toggle .icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}
.contentsBody .acd__toggle .icon__minus {
  display: none;
  opacity: 0;
}
.contentsBody .acd__toggle .icon__plus {
  display: inline-block;
  opacity: 1;
}
.contentsBody .acd__contents {
  box-sizing: content-box;
  position: relative;
  height: 0;
  overflow: visible;
  opacity: 0;
  transition: 0.25s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  transition-property: height, opacity, padding;
  cursor: pointer;
}
.contentsBody .acd__contents:before {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  right: auto;
  left: auto;
  top: 0;
  display: block;
  margin: 0 auto;
  background-image: url(../../../../assets/img/global/img_line.png);
  background-size: auto 100%;
  background-repeat: repeat-x;
  transition: 0.5s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  opacity: 0;
  transition-property: opacity;
}
.contentsBody .acd__item {
  transition: 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  color: rgb(86, 86, 86);
}
.contentsBody .acd__item:hover {
  color: var(--color-txt);
}
.contentsBody .acd__item.-acdShow .acd__toggle .icon {
  transform: rotate(360deg);
}
.contentsBody .acd__item.-acdShow .acd__toggle .icon__minus {
  display: inline-block;
  opacity: 1;
}
.contentsBody .acd__item.-acdShow .acd__toggle .icon__plus {
  display: none;
  opacity: 0;
}
.contentsBody .acd__item.-acdShow .acd__contents {
  opacity: 1;
  padding-top: clamp(10px, 7.6923076923px + 0.641025641vw, 20px);
  padding-bottom: clamp(15px, 11.5384615385px + 0.9615384615vw, 30px);
}
.contentsBody .acd__item.-acdShow .acd__contents:before {
  opacity: 1;
}
