@charset "utf-8";
@import url("root.css");
/***************************************
-------------- CONTACT --------------
***************************************/
.faq_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 60px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border: 2px solid var(--base-color01);
    background: #fff;
    padding: 5%;
}
#faq h3 {
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    color: var(--base-color01);
    border-bottom: 2px solid var(--base-color01);
    padding-bottom: 5px;
    margin-bottom: 15px;
}


#faq .faq_wrap dl:not(:nth-of-type(1)) {
  padding-top: 30px;
  border-top: 1px dashed #000;
}

#faq dl:first-of-type {
    margin: 0 auto;
}
#faq dl:not(:first-of-type) {
    margin: 30px auto 0;
}
#faq dt {
    font-size: 2.0rem;
    position: relative;
    width: calc(100% - 60px);
    margin-left: 60px;
    margin-bottom: 20px;
    color: #fff;
    background: #4b5196;
    padding-left: 10px;
}
#faq dd {
    color: #c86464;
    font-size: 2.0rem;
    position: relative;
    width: calc(100% - 60px);
    margin-left: 60px;
}
#faq dt::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/icon_q.png) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 20px;
    left: -40px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#faq dd::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url(../img/icon_a.png) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 20px;
    left: -40px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

#faq dd a {
    font-size: 2.0rem;
  color: var(--base-color01);
  text-decoration: underline;
}


/* =======================
  PC
======================== */
@media screen and (min-width: 1200px) {}
/* =======================
  TABLET
======================== */
@media screen and (max-width:1199px) {
}
/* =======================
  SP
======================== */
@media screen and (max-width: 599px) {

}