@media screen and (min-width: 769px) {
  #faqPage .faq-list {
    margin: 0 auto;
    width: 720px;
  }
  #faqPage .faq-list .faq-item {
    border-bottom: 2px solid #26C4A6;
    margin-bottom: 0;
  }
  #faqPage .faq-list .faq-item:first-child {
    border-top: 2px solid #26C4A6;
  }
  #faqPage .faq-list .faq-q {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
  }
  #faqPage .faq-list .faq-q::after, #faqPage .faq-list .faq-q::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    background: #26C4A6;
    transition: 0.3s;
  }
  #faqPage .faq-list .faq-q::after {
    width: 24px;
    height: 3px;
    transform: translateY(-50%);
  }
  #faqPage .faq-list .faq-q::before {
    width: 3px;
    height: 24px;
    transform: translate(-10.5px, -50%);
  }
  #faqPage .faq-list .faq-q.is-active::before {
    transform: translate(-10.5px, -50%) rotate(90deg);
    opacity: 0;
  }
  #faqPage .faq-list .faq-q .q-icon {
    font-size: 40px;
    font-weight: bold;
    color: #26C4A6;
    line-height: 1;
  }
  #faqPage .faq-list .faq-q .q-text {
    margin-top: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #26C4A6;
    line-height: 1.6;
    padding-right: 40px;
  }
  #faqPage .faq-list .faq-a {
    display: none;
    padding-bottom: 40px;
  }
  #faqPage .faq-list .faq-a .a-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  #faqPage .faq-list .faq-a .a-icon {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    line-height: 1;
  }
  #faqPage .faq-list .faq-a .a-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  #faqPage .faq-list .faq-a .a-text strong {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
  }
  #faqPage .faq-list .faq-a .a-text small {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  #faqPage .faq-list .faq-item {
    border-bottom: 1px solid #26C4A6;
  }
  #faqPage .faq-list .faq-q {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    position: relative;
    padding: 25px 30px 25px 0;
    align-items: center;
  }
  #faqPage .faq-list .faq-q::after, #faqPage .faq-list .faq-q::before {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    background: #26C4A6;
    transition: 0.3s;
  }
  #faqPage .faq-list .faq-q::after {
    width: 18px;
    height: 2px;
    transform: translateY(-50%);
  }
  #faqPage .faq-list .faq-q::before {
    width: 2px;
    height: 18px;
    transform: translate(-8px, -50%);
  }
  #faqPage .faq-list .faq-q.is-active::before {
    transform: translate(-8px, -50%) rotate(90deg);
    opacity: 0;
  }
  #faqPage .faq-list .faq-q .q-icon {
    color: #26C4A6;
    font-weight: bold;
    font-size: 30px;
  }
  #faqPage .faq-list .faq-q .q-text {
    color: #26C4A6;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Noto Sans", sans-serif;
    margin-top: 5px;
  }
  #faqPage .faq-list .faq-a {
    display: none;
    padding-bottom: 25px;
  }
  #faqPage .faq-list .faq-a .a-inner {
    display: flex;
    gap: 15px;
  }
  #faqPage .faq-list .faq-a .a-icon {
    font-size: 24px;
    font-weight: bold;
  }
  #faqPage .faq-list .faq-a .a-text {
    font-size: 14px;
    line-height: 1.6;
    font-family: "Noto Sans", sans-serif;
  }
  #faqPage .faq-list .faq-a .a-text p {
    margin-bottom: 1em;
  }
  #faqPage .section {
    padding-bottom: 60px;
    padding-top: 20px;
  }
}