@charset "utf-8";
/* CSS Document */

/*/////////////////
  よくある質問
/////////////////*/
  .faq-tab-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .faq-tab {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    gap: 15px;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
    padding: 0;
    list-style: none;    
  }

  .faq-tab:hover {
    cursor: pointer;
  }

  .faq-tab::-webkit-scrollbar {
    display: none;
  }

  .faq-tab .tab {
    position: relative;
    flex: 0 0 auto;
    min-width: max-content;
    padding: 15px;
  }

  .faq-tab .tab.is-active {
    font-weight: bold;
    color: #948775;
  }

  .faq-tab .tab.is-active::after {
    content: "";
    width: 20px;
    height: 3px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: inline-block;
    background: #948775;
  }

  .tab-nav {
    flex: 0 0 32px;
    display: none;
    border: none;
  }

  .tab-nav.is-show {
    display: block;
    /* ← これが必要 */
  }

  .tab-nav.prev {
    border-right: 1px solid rgba(0, 0, 0, 0.25);
  }

  .tab-nav.prev::before {
    content: "<";
    font-weight: bold;
    color: #948775;
  }

  .tab-nav.next {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
  }

  .tab-nav.next::before {
    content: ">";
    font-weight: bold;
    color: #948775;
  }

  .tab-nav.is-show {
    display: block;
    width: 32px;
    height: 32px;
    padding: 0 10px;
    background: #fff;
    cursor: pointer;
  }

  .answer {
    display: none;
    position: relative;
  }

  .qa-item {
    display: none;
    border-bottom: 1px solid #E4E1DC;
  }

  .qa-item.is-show {
    display: block;
  }

  .qa-item.is-show .t-cat {
    color: #948775;
    display: block;
    font-weight: bold;
    font-size: 1.4rem;
    position: relative;
    margin-bottom: 2px;
  }

  .qa-item.is-show .t-cat::before,
  .qa-item.is-show .t-cat::after {
    content: "";
    position: relative;
    font-size: 1.4rem;
    color: #948775;
    display: inline-block;
  }

  .qa-item.is-show .t-cat::before {
    content: "[";
    padding-right: 3px;
  }

  .qa-item.is-show .t-cat::after {
    content: "]";
    padding-left: 3px;
  }

  .qa-item .question:hover {
    cursor: pointer;
  }

  .qa-item .question .inner {
    position: relative;
    padding: 20px 55px 20px 60px;
  }

  .qa-item .question .inner .i-plus {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 25px;
    top: 50%;
  }

  .qa-item .question .inner .i-plus::before,
  .qa-item .question .inner .i-plus::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: #948775;
    width: 100%;
    height: 2px;
    transition: all ease 0.28s;
  }

  .qa-item .question .inner .i-plus::after {
    transform: rotate(90deg);
    transform-origin: center;
  }

  .qa-item.is-open .question .inner .i-plus::after {
    transform: rotate(0deg);
  }

  .qa-item .question .i-question {
    display: inline-block;
    position: absolute;
    left: 1vw;
    top: 32px;
    width: 28px;
    height: 30px;
    background: url("https://file002.shop-pro.jp/PA01363/242/img/common/i-queation.svg") no-repeat center top / contain;
    opacity: 0.3;
  }

  .qa-item .question .txt-q {
    font-size: clamp(1.7rem, 1.6336rem + 0.14vw, 1.8rem);
    color: #333;
    line-height: 1.5;
  }

  .qa-item.is-show.is-open .question .txt-q {
    font-weight: bold;
  }

  .qa-item.is-show.is-open .question .i-question {
    opacity: 1;
  }

  .qa-item .answer .inner {
    background: #F7F6F5;
    padding: 30px;
  }

  .qa-item.is-show.is-open .answer::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 5vw;
    top: -10px;
    border-bottom: 10px solid #F7F6F5;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }

  .qa-item.is-fadein {
    animation: faqFadeUp .35s ease both;
  }

  .faq-more {
    display: block;
    width: min(350px, 100%);
    padding: 12px 20px;
    margin: 20px auto;
    background: #AFA19A;
    color: var(--wht);
    border: none;
    border-radius: 9999px;


  }

  @keyframes faqFadeUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (min-width: 768px) {
    .contents-freepage {
      min-height: 350px;
    }
  }

  @media (max-width: 640px) {
    .qa-item .question .inner {
      padding: 20px 10px 20px 40px;
    }

    .qa-item .question .inner .i-plus {
      width: 14px;
      height: 14px;
      top: 27px;
    }

    .qa-item .question .i-question {
      width: 24px;
      left: 0.5vw;
    }

    .faq-tab {
      gap: 0px;
    }

    .qa-item .question .txt-q {
      font-size: 1.6rem;
    }
  }







