@charset "UTF-8";
#main {
  overflow: visible;
}

/* ▼▼▼ よくある質問
=====================================*/
.faq .ttl_wrap {
  margin: 32px 0;
}
@media screen and (min-width: 768px), print {
  .faq .ttl_wrap {
    margin: 60px 0;
  }
}
@media screen and (min-width: 768px), print {
  .faq_wrap {
    width: 100%;
    max-width: 1288px;
    padding: 0 16px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

/* ▼▼▼ Anchor FAQ Navigation
=====================================*/
.anchor_faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2px;
  padding: 16px 0;
  border-bottom: 1px solid #E6E6E6;
  position: sticky;
  top: 64px;
  background: var(--Background-Primary);
  z-index: 100;
  overflow-y: auto;
}
@media screen and (min-width: 768px), print {
  .anchor_faq {
    display: inline-block;
    border-bottom: none;
    padding: 0;
    top: 140px;
    max-width: 286px;
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.anchor_faq_item {
  position: relative;
  color: var(--Object-Secondary);
  font-weight: 500;
  font-size: var(--lavel-X-Small);
  padding: 8px 32px;
  border-radius: 100vmax;
  white-space: nowrap;
}
@media screen and (min-width: 768px), print {
  .anchor_faq_item {
    margin-bottom: 4px;
  }
}
.anchor_faq_item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--Background-Quaternary);
}
.anchor_faq_item:hover {
  opacity: 1;
  background: var(--Background-Quaternary);
}
.anchor_faq_item.active {
  background: var(--Background-Quaternary);
}
.anchor_faq_item.active::before {
  background: var(--Brand-color-Primary);
}

.faq_inner_wrap {
  padding-top: 32px;
}
@media screen and (min-width: 768px), print {
  .faq_inner_wrap {
    width: calc(100% - 286px);
    padding-top: 0;
  }
}
.faq_inner {
  background: var(--Background-Secondary);
  border-radius: 20px;
  padding: 0 24px;
  cursor: pointer;
}
@media screen and (min-width: 768px), print {
  .faq_inner {
    padding: 0 40px;
    margin-bottom: 24px;
  }
}
.faq_inner.open .faq_list {
  display: none;
}
.faq .category_title {
  margin-bottom: 0;
  padding: 40px 0 40px 20px;
  position: relative;
  font-size: var(--Heading-H3);
}
.faq .category_title::after {
  content: "";
  position: absolute;
  background: url(../img/support/icon_faq_acc_close.svg) no-repeat center center/contain;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 32px;
}
.faq .category_title.open_faq::after {
  background: url(../img/support/icon_faq_acc_open.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px), print {
  .faq .category_title {
    padding: 32px 0 32px 20px;
  }
}
.faq_list {
  display: none;
}
.faq_list .faq_block:not(:last-child) {
  border-bottom: 1px solid var(--Line-Primary);
}
@media screen and (min-width: 768px), print {
  .faq_list .faq_block {
    margin: 0 20px;
  }
}
.faq_question {
  padding: 24px 48px 24px 0px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px), print {
  .faq_question {
    padding: 24px 92px 24px 0px;
  }
}
.faq_question::after, .faq_question::before {
  content: "";
  display: block;
  position: absolute;
}
.faq_question::before {
  width: 40px;
  height: 20px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid var(--Brand-color-Primary);
  border-radius: 100vmax;
}
.faq_question::after {
  width: 6px;
  height: 6px;
  right: 16px;
  top: 50%;
  border-top: solid 2px var(--Brand-color-Primary);
  border-right: solid 2px var(--Brand-color-Primary);
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq_question.open::after {
  -webkit-transform: translateY(-80%) rotate(135deg);
          transform: translateY(-80%) rotate(135deg);
}
.faq_category_title {
  font-size: var(--Heading-H5);
  font-weight: 500;
  margin: 40px 0 20px;
}
.faq_category_title.first {
  margin-top: 0;
}
.faq_question_ttl {
  font-weight: 500;
  font-size: var(--Heading-H5);
  margin-bottom: 16px;
}
@media screen and (min-width: 768px), print {
  .faq_question_ttl {
    margin-bottom: 0;
  }
}
.faq_question_ttl_sub {
  font-size: var(--Label-XX-Small);
}
.faq_product_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 8px;
}
@media screen and (min-width: 768px), print {
  .faq_product_info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.faq_product_label {
  font-weight: 500;
  font-size: var(--Label-Small);
  color: var(--Object-Secondary);
  white-space: nowrap;
}
.faq_product_name {
  font-weight: 500;
  font-size: var(--Label-Small);
  color: var(--Object-Secondary);
}
.faq_product_name_sub {
  font-size: var(--Label-XX-Small);
}
.faq_answer {
  display: none;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px), print {
  .faq_answer {
    padding: 0 24px 20px;
  }
}
.faq_answer_content {
  background: var(--Background-Tertiary);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}
.faq .link_text {
  color: var(--Brand-color-Primary);
  text-decoration: underline;
  display: inline;
}
.faq .link_text[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_arrow_outward.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-filter: brightness(0) saturate(100%) invert(50%) sepia(29%) saturate(3871%) hue-rotate(176deg) brightness(97%) contrast(96%);
          filter: brightness(0) saturate(100%) invert(50%) sepia(29%) saturate(3871%) hue-rotate(176deg) brightness(97%) contrast(96%);
}
.faq_close_btn {
  font-size: var(--navigation-medium-base);
  line-height: 1em;
  text-align: center;
  cursor: pointer;
}