@charset "UTF-8";

/* FAQ
---------------------*/
/* 緊急お知らせ非表示 */

.systemTicker{
    display: none;
}
/* 背景なし */
body{
    background: #fff;
}
/* space */
.faq_mb-15 {
    margin-bottom: 15px;
}
.faq_mb-20 {
    margin-bottom: 20px;
}

/* layout */
.faq_contentArea {
    font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
    /* PC時背景固定 */
    /* .faq_bg {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100vh;
      overflow: auto;
      background: url() no-repeat bottom;
      background-size: max(100%,1366px);
    } */
    .faq_contentArea {
        position: relative;
        z-index: 2;
        width: min(375px, 100%);

        margin-inline: auto;
    }
}

/* heading */
.faq_head {
    padding-top: 60px;
    padding-bottom: 60px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #3a3a3a;
}

/* accordion */
.faq_accordion {
    max-width: 500px;
    background-color: #fafafa;
    margin-inline: auto;
}

.faq_accordion:not([open]) {
    margin-bottom: 2px;
}

.faq_accordion summary {
    position: relative;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    padding: 1em 2em;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    background-color: #900000;
    cursor: pointer;
}

.faq_accordion summary::-webkit-details-marker {
    display: none;
}

.faq_accordion summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.5em;
    width: 14px;
    height: 8px;
    margin-left: 10px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10.519' viewBox='0 0 16 10.519'><path d='M194.5,118.983l-7.753-8.86a1,1,0,0,1,1.505-1.317l6.247,7.14,6.247-7.14a1,1,0,0,1,1.505,1.317Z' transform='translate(202.5 118.983) rotate(180)' fill='%23fff'/></svg>");
    transform: translateY(-50%) rotateX(180deg);
    transition: transform .3s;
}

.faq_accordion[open] summary::after {
    transform: translateY(-80%) rotate(0deg);
}

.faq_accordion > .faq_body {
    margin: 0;
    padding: 30px;
    color: #333;
    transform: translateY(-10px);
    opacity: 0;
    line-height: 1.5;
}

.faq_accordion[open] > .faq_body {
    transform: none;
    opacity: 1;
}
.faq_text {
    font-size: 14px;
}
.faq_ttl {
    font-weight: 700;
    font-size: 16px;
    color: #900000;
}
.faq_ttl-md {
    font-weight: 700;
    font-size: 15px;
    color: #454545;
}
.faq_body > *,
.faq_body > dl > * {
    margin-bottom: 30px;
}
.pageHeader {
    margin-bottom: calc(32 * var(--scale-rem));
}
.pageTitle {
    font-size: calc(32 * var(--scale-rem));
    margin: 2rem 0 0;
    text-align: center;
}
.pageTitle.-en {
    font-size: calc(20 * var(--scale-rem));
    font-weight: 700;
    margin-top: 0.5rem;
}
.spOnly {
    display: none;
}
@media (max-width: 767px) {
    .spOnly {
        display: block;
    }
}
.tell {
    font-size: calc(28 * var(--scale-rem));
    font-weight: bold;
    line-height: 1.6;
}
.mt_40 {
    margin-top: calc(20 * var(--scale-rem));
}
.mt_60 {
    margin-top: calc(60 * var(--scale-rem));
}

.txt--center {
    text-align: center;
}
.bg_white {
    background: #fff;
}
.contentArea-xs {
    padding: calc(23 * var(--scale-rem));
}
.p-contact a.btn {
    justify-content: space-between;
    display: flex;
    align-items: center;
    font-size: calc(18 * var(--scale-rem));
    font-weight: bold;
    gap: 1em;
}
.p-contact h2 {
    font-size: calc(23 * var(--scale-rem));
    line-height: 1.8;
    margin: 2rem 0 1rem;
    text-align: center;
}
.p-contact h4 {
    font-size: calc(20 * var(--scale-rem));
    line-height: 1.8;
    margin: 2rem 0 1rem;
}
.p-contact p {
    font-size: calc(18 * var(--scale-rem));
    line-height: 1.8;
}
.p-contact .flex{
    display: flex;
    gap: 0.5em;
}
.p-contact .align-items-center{
    align-items: center;
}
.p-contact .justify-content-center{
    justify-content: center;
}