@charset "UTF-8";
/**
 * FAQ
 */
/*
スマホ実機で余白が出るのでコメントアウト 20251120
main {
  overflow-x: visible;
}
*/
#faq-content * {
  --faq-color-1: #00bfbf;
  --faq-color-1-rgb: 0, 191, 191;
  --faq-color-2: #5fd2d3;
}
#recharge #faq-content * {
  --faq-color-1: #0046ff;
  --faq-color-1-rgb: 0, 70, 255;
  --faq-color-2: #4f7dfd;
}

.faq-header {
  position: relative;
  z-index: 2;
}
.faq-header .faq-nav-icons {
  margin-bottom: 30px;
}
.faq-header .message {
  display: flex;
  justify-content: center;
}
.faq-header .message .show {
  margin: 25px 0 -10px;
}
.faq-header .message .text {
  color: #ff003c;
  font-size: 1.5rem;
  line-height: 1.3;
}
.faq-header-wrap {
  background-color: #f2f5f5;
  padding: 25px 30px 45px;
  margin-bottom: 40px;
  border-radius: 30px;
}
.faq-header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--faq-color-1);
  font-size: 2.1rem;
  line-height: 1.3;
  text-align: center;
  margin: 10px auto 30px;
  padding-bottom: 12px;
}
.faq-header-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 40%;
  margin: 0 auto;
  border-bottom: 3px solid var(--faq-color-1);
}
.faq-header-title > .icon {
  fill: var(--faq-color-1);
  margin-right: 0.3em;
}
.faq-header-title > .icon-category {
  width: 28px;
  height: 28px;
}
.faq-header-title > .icon-search {
  stroke: var(--faq-color-1);
  stroke-width: 1%;
  width: 28px;
  height: 28px;
}
.faq-header .search-form {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 15px;
}
.faq-header .search-form-input {
  position: relative;
  flex: 1;
}
.faq-header .search-form-input > .icon-search {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 20px;
  height: 20px;
  fill: #b5b5b5;
  stroke: #b5b5b5;
  stroke-width: 2%;
  z-index: 3;
  margin-top: 1px;
  transform: translateY(-50%);
  transition: all 0.25s;
}
.faq-header .search-form-input input {
  position: relative;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック", "メイリオ", sans-serif;
  font-size: 1.6rem;
  line-height: 1.3;
  bottom: 0;
  width: 100%;
  height: 46px;
  padding: 8px 36px 8px 36px;
  margin-top: 2px;
  background-color: #fff;
  border: 0;
  border-radius: 12px;
  outline: 2px solid #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
  z-index: 2;
}
.faq-header .search-form-input input:focus, .faq-header .search-form-input input:focus-visible {
  outline: 2px solid var(--faq-color-1);
  box-shadow: 0 0 8px rgba(var(--faq-color-1-rgb), 0.3);
}
.faq-header .search-form-input input:focus ~ .icon-search, .faq-header .search-form-input input:focus-visible ~ .icon-search {
  fill: #777;
  stroke: #777;
}
.faq-header .search-form-btn {
  flex: 0 1 calc(20% - 10px);
}
.faq-header .search-form-btn input {
  color: #fff;
  font-family: "Roboto", "Noto Sans JP", "游ゴシック", "メイリオ", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-indent: 0.1em;
  font-weight: bold;
  line-height: 1.3;
  bottom: 0;
  width: 100%;
  height: 50px;
  padding: 8px 16px;
  background-color: var(--faq-color-2);
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  border-radius: 12px;
  outline: none;
  transition: all 0.25s;
  cursor: pointer;
}
.faq-header .search-form-btn input:hover {
  background-color: var(--faq-color-1);
}

.js-faq {
  min-height: 80vh;
  margin-bottom: 100px;
}
.js-faq-section {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-faq-section.visible {
  max-height: none;
  opacity: 1;
  visibility: visible;
  overflow: visible;
}
#recharge .js-faq-section {
  margin-top: 0;
}
.js-faq-clear-word {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  transform: translateY(-50%);
  z-index: 3;
}
.js-faq-clear-word > .icon-clear {
  width: 20px;
  height: 20px;
  fill: #b5b5b5;
  stroke: #b5b5b5;
  stroke-width: 2%;
  cursor: pointer;
  transition: all 0.25s;
}
.js-faq-clear-word > .icon-clear:hover {
  fill: #777;
  stroke: #777;
}
.js-faq-suggest {
  display: none;
  position: absolute;
  top: auto;
  left: -2px;
  right: -2px;
  margin-top: 6px;
}
.js-faq-suggest.active {
  display: block;
}
.js-faq-suggest ul {
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.15));
}
.js-faq-suggest ul li {
  display: flex;
  align-items: flex-start;
  color: #333;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 10px;
  cursor: pointer;
}
.js-faq-suggest ul li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.js-faq-suggest ul li:hover {
  background-color: #f5f5f5;
}
.js-faq-suggest ul li:hover .icon {
  fill: #777;
  stroke: #777;
}
.js-faq-suggest ul li strong {
  color: #000;
}
.js-faq-suggest ul li .icon {
  position: relative;
  fill: #b5b5b5;
  stroke: #b5b5b5;
  stroke-width: 2%;
  width: 20px;
  height: 20px;
  margin-right: 0.3em;
}
.js-faq-suggest ul li .text {
  flex: 1;
  margin-top: 2px;
}
.js-faq .js-faq-result-title {
  max-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.5s 0s, visibility 0s 0.5s;
}
.js-faq .js-faq-result-title.hidden {
  visibility: hidden;
  height: 0;
}
.js-faq-category {
  min-height: 200vh;
}
.js-faq-category .tab_content {
  margin-bottom: 0;
}
.js-faq-result {
  min-height: 200vh;
}
.js-faq-result .tab_content {
  margin-bottom: 0;
}
.js-faq-result .js-faq-result-title {
  margin: -20px 0 15px;
  padding-top: 30px;
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s 0s, visibility 0s 0s;
}
.js-faq-result .js-faq-result-title p {
  line-height: 1.2;
  font-weight: normal;
}
.js-faq .js-faq-search-word,.js-faq .js-faq-count {
  font-size: 1em;
}
.js-faq .js-faq-count .num {
  font-style: normal;
}
.js-faq strong,.js-faq .suffix {
  display: inline-block;
}
.js-faq .suffix {
  font-size: 1em;
}
.js-faq-complete {
  min-height: auto;
}
.js-faq .no-result {
  display: none;
}
.js-faq-no-result .no-result {
  display: block;
  margin-top: 50px;
}
.js-faq-no-result .no-result p {
  font-size: 2rem;
  line-height: 1.3;
}
.js-faq-cat-title.hidden,.js-faq-body.hidden {
  display: none;
}

div.faq-category-title p {
  font-size: 3.2rem;
}

@media (max-width: 767px){
  .faq-header-wrap {
    border-radius: 15px;
    padding: 15px 15px 35px;
  }
  .faq-header-title {
    font-size: 1.9rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .faq-header-title::before {
    width: min(70vw, 320px);
  }
  .faq-header-title > .icon-category {
    width: 24px;
    height: 24px;
  }
  .faq-header-title > .icon-search {
    width: 24px;
    height: 24px;
  }
  .faq-header .search-form {
    flex-direction: column;
    align-items: center;
    margin: 0;
  }
  .faq-header .search-form-input {
    width: 100%;
    flex: 1 1 100%;
  }
  .faq-header .search-form-input > .icon-search {
    left: 6px;
  }
  .faq-header .search-form-input input {
    padding: 8px 30px 8px 30px;
    border-radius: 8px;
  }
  .faq-header .search-form-btn {
    width: 150px;
  }
  .faq-header .search-form-btn input {
    border-radius: 8px;
  }
  .js-faq-clear-word {
    right: 6px;
  }
  .js-faq-suggest ul li .icon {
    top: 1px;
    width: 17px;
    height: 17px;
  }
  .js-faq-suggest ul li .text {
    margin-top: 1px;
  }
  div.faq-category-title p {
    font-size: 2.4rem;
  }
}