@charset "UTF-8";

/* 全体 */
[class*=p-content__common]:not(:first-child) {
    max-width: 1200px;
    background: unset;
}

[class*=p-content__common] {
    padding: 0px;
}

.p-webpage-faq {
    margin-bottom: 24px;
}

/* アコーディオンメニュー */
.p-webpage-faq-question {
    height: 52px;
    margin-top: 24px;
    padding-left: 16px;
    background: #000000;
    display: flex;
    align-items: center;
    cursor :pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    color: #ffffff;
    position: relative;
}
/* 閉じてる時のアイコン */
.p-webpage-faq-question::before {
    width: 18px;
    content: '';
    border: 2px solid #fff;
    position: absolute;
    right: 15px;
}
/* 閉じてる時のアイコン */
.p-webpage-faq-question::after {
    width: 18px;
    content: '';
    border: 2px solid #fff;
    position: absolute;
    right: 15px;
    transform: rotate(90deg);
}

.p-webpage-faq-check {
    display: none;
}

.p-webpage-faq-answer {
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: 0.01s;
    visibility: hidden;
}

.p-webpage-faq-answer .p-webpage-faq-answer__content {
    margin: 0px;
    font-weight: 500;
    display: flex;
}

.p-webpage-faq-answer .p-webpage-faq-answer__content .p-webpage-faq-answer__text {
    margin: 0px;
    padding-left: 11px;
    color: #333333;
    font-size: 16px;
    font-weight: normal;
}

.p-webpage-list__number {
    margin-bottom: 0px;
}

.p-webpage-faq-answer .p-webpage-faq-answer__content .p-webpage-faq-answer__text p {
    margin: 0px;
}

/* オープン時のアイコン */
.p-webpage-faq-check:checked + .p-webpage-faq-question::after {
    transform: rotate(0deg);
}

.p-webpage-faq-check:checked + .p-webpage-faq-question + .p-webpage-faq-answer {
    height: 100%;
    padding: 16px;
    opacity: 1;
    visibility: visible;
    background: #ffffff;
}

/* 「Q」の文字 */
.question {
    font-family: none;
    font-size: 20px;
}

/* 「A」の文字 */
.answer {
    margin-top: -3px;
    font-size: 20px;
    font-weight: bold;
    color: #0e1a40;
}

.p-webpage-list__number li {
    list-style: decimal;
}

/* リンク */
.p-webpage-link {
    text-decoration: underline;
    color: #1a0dab;
}

.p-webpage-link:hover {
    color: #ef4f4f;
}

@media only screen and (max-width: 1024px) {
  [class*=p-content__common]:not(:first-child) {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media only screen and (max-width: 519px) {
    [class*=p-content__common]:not(:first-child) {
        margin-top: 0px;
        margin-bottom: 7px;
      }
  .p-headline {
    margin: 0px;
  }

  .p-headline .c-header__primary, .p-headline .c-header__posts_primary, .p-headline .c-header__posts_secondary {
    margin-top: 40px;
  }
}
