/* CSS Document */
#QA p {
    font-size: 18px;
    text-align: left;
    font-weight: 700;
}

@media screen and (max-width: 639px) {
#QA p {
    font-size: 14px;
}
}

.sec_inner img.text_icon {
    vertical-align: middle;
    height: 2em;
    width: auto;
    margin-top: 0.1em;
    margin-bottom: 0.1em;
    padding: 0.2em;
}
.sec_inner .qa img.text_icon {
    height: 1.9em;
}

#QA .qalist p {
    margin: 0;
    padding: 0 0 0 2em;
}
@media screen and (max-width: 639px) {
    #QA .qalist p {
        padding-left: 0;
    }
    }
#QA .qalist .card_name {
    padding: 12px 42px 12px 15px;
    line-height: 1;
    margin: 0;
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    margin-bottom: 0.5em;
    user-select:none;
}
#QA .qalist .card_name::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto 0px;
    width: 28px;
    height: 28px;
    background-image: url('../rules/images/plus_w.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
    opacity: 0.4;
}
#QA .qalist .card_name.open::after {
    background-image: url('../rules/images/minus_w.svg');
}

#QA .qalist .thumb {
    display: inline-block;
    margin: 0 auto 0.5em;
}
#QA .qalist .thumb img {
    height: 480px;
    width: auto;
}
#QA .qalist .thumb img.PIECE {
    height: auto;
    width: 480px;
}

#QA .qalist > div {
    margin: 0 0 2em;
}
#QA .qalist ul li {
    border: 1px solid #ccc;
    padding: 12px 22px;
    background-color: #fff;
    margin-bottom: 0.5em;
}
@media screen and (max-width: 639px) {
    #QA .qalist ul li {
        padding: 10px 15px;
    }
    }
#QA .qalist ul li:nth-child(even) {
    background-color: #f0f9ff;
}
#QA .qalist ul li .que {
    border-bottom: 1px dotted #ccc;
}
#QA .qalist ul li div {
    margin-bottom: 0.8em;
    padding-bottom: 0.8em;
    position: relative;
}

#QA .qalist ul li div::before {
    font-size: 24px;
    position: absolute;
    margin: 0px;
    top: 3px;
    left: 0px;
    line-height: 1;
    font-weight: 700;
}
@media screen and (max-width: 639px) {
    #QA .qalist ul li div::before {
        font-size: 20px;
        position: relative;
        display: block;text-align: left;
        margin-bottom: 0.4em;
    }
    }
#QA .qalist ul li .que::before {
    content: 'Q.';
}
#QA .qalist ul li .ans::before {
    content: 'A.';
}

.card_color_W {
    color: #d68f34;
}
.card_color_U {
    color: #3b76fd;
}
.card_color_B {
    color: #983cff;
}
.card_color_R {
    color: #fd3776;
}
.card_color_G {
    color: #249d77;
}
.card_color_C {
    color: #000;
}

/** アコーディオンメニュー用 **/
.js-accordion--target{
    transition: height 0.2s;
  }
.js-accordion-enter-active{
    animation-duration: 0.2s;
	animation-delay: 0.1s;
    animation-fill-mode: both;
    animation-name: js-accordion--anime__opend;
  }
.js-accordion-leave-active{
    animation-duration: 0.2s;
    animation-fill-mode: both;
    animation-name: js-accordion--anime__closed;
  }

@keyframes js-accordion--anime__opend {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
   }
}
@keyframes js-accordion--anime__closed {
  0% {
   opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
