<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS column Document */
.ac-faq {
    margin: 3em auto;
    max-width: 60vw;
}

.ac-toggle {
    display: none;
}

.ac-option {
    position: relative;
    margin-bottom: 1em;
}

.ac-title,
.ac-content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}



.ac-title {
    font-size: 18px;
    font-weight: 700;

    padding: 14px 45px 14px 24px;
    border: 3px solid #ddd;
    display: block;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}

.ac-title::after,
.ac-title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    top: 35%;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    transition: all 0.3s;
}

.ac-title::after {
    transform: rotate(90deg);
}

.ac-content {
    height: 0;
    max-height: 0;
    overflow: hidden;
}

.ac-content p {
    margin: 0;
    padding: 0.5em 1em 1em;
    font-size: 15px;
    color: rgb(119, 119, 119);
    line-height: 1.8em;

    background: #efefee;
    padding: 20px 30px;
    border-radius: 2px;
    margin-bottom: 30px;
}

.ac-toggle:checked+.ac-title+.ac-content {
    height: auto;
    max-height: 500px;
    transition: all 1.5s;
}

.ac-toggle:checked+.ac-title::before {
    transform: rotate(90deg) !important;
}

.faq-warp{
    margin-bottom:60px;
}

h3.faq-header {
    font-size: 24px;
    font-weight: 700;
    /* padding: 3px 20px 20px 45px; */
  padding: 8px 0 20px 45px;
    color: #242424;
    background-image: url(/themes/custom/dorazamurai_front/img/contents/faq/faq.webp);
    background-size: 40px 40px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  .ac-faq {
    max-width: initial;
  }
}

/* 求職者には見せない */
.role-seeker.user-logged-in .faq-warp.company{
    display: none;
}</pre></body></html>