@charset "UTF-8";
/* android用 */
body {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;/* Safari */
}
/* 見出し背景 ページ調整用 start */
.c-heading__lower__bgImg--01 {
    background-image: url(/faq/images/company_bg.png);
}
@media screen and (max-width: 768px) {
    .c-heading__lower {
        margin-bottom: 60px;
        width: 100vw;
    }
}
/* 見出し背景 ページ調整用 end */

#faq h3 {
    margin-left: 45px;
}
#faq .c-faq__category {
    margin-bottom: 200px;
}
#faq .c-faq__category dl:last-child{
    margin-bottom: 0!important;
}
.u-faq__q {
    width: 90%;
}
.u-faq__q,.u-faq__a {
    text-indent: -2em;
    padding-left: 2em;
    font-weight: 600;
}
.u-faq__a {
    text-indent: -2em;
    padding-left: 2em;
    font-weight: 600;
    max-height: 999999px;/* android用 */
    line-height: 1.6;
}
.p-faq.c-box__shadow {
    border-radius: 10px;
    padding: min(3vw, 30px);
    position: relative;
}
.p-faq.u-margin-bottom__100 {
    margin-bottom: min(4.017857142857143vw, 45px);
}
@media screen and (max-width: 768px) {
    #faq h3 {
        margin-left: 6%;
    }
    #faq .c-faq__category {
        margin-bottom: 100px;
    }
    .u-faq__q,.u-faq__a {
        line-height: 1.4;
        text-indent: -1.5em;
        padding-left: 1.5em;
    }
    .u-faq__a {
        line-height: 1.6;
    }
    .u-faq__q {
        line-height: 1.4;
    }
}




/* anchor start */
.c-linkArea {
    display: flex;
    justify-content: space-around;
    margin-bottom: 100px;
    max-width: 100%;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}
.c-linkArea .c-Btn__block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    line-height: 1.2;
    margin: 0 10px;
    width: 26%;
}
.c-linkArea .c-noLink__Btn {
    background-color: #fff;
    border: 2px solid #0071bd;
    color: #0071bd;
    padding: 15px 50px 15px 50px;
}
.c-linkArea .c-Btn__block .c-goTtx__Item01 {
    margin-left: 15px;
}
.c-linkArea .c-Btn__block a {
    display: flex;
    flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
    .c-linkArea {
        display: block;
        width: 70%;
        margin-top: 40px;
        margin-bottom: 70px;
    }
    .c-linkArea .c-Btn__block {
        margin-bottom: 8%;
        margin-left: 0;
        margin-right: 0;
    }
    .c-linkArea .c-Btn__block .c-goTtx__Item01 {
        margin-left: 0;
    }
    .c-linkArea .c-Btn__block {
        width: 100%;
    }
}
/* anchor end */


/*アコーディオン全体*/
.c-accordion{
    margin:0 auto;
}
/*アコーディオンタイトル*/
.c-accordion__faq {
    position: relative;/*+マークの基準位置*/
    cursor: pointer;
    transition: all .5s ease;
}
/*アイコン*/
.c-accordion__faq::before,
.c-accordion__faq::after{
    position: absolute;
    content: '';
    width: 23px;
    height: 4px;
    background-color: #0071bd;
    border-radius: 20px;
}
.c-accordion__faq::before{
    top:48%;
    right: 15px;
    transform: rotate(0deg);
}
.c-accordion__faq::after{    
    top:48%;
    right: 15px;
    transform: rotate(90deg);
}
/*　close　*/
.c-accordion__faq.close::before{
    transition: all .5s ease;
}
.c-accordion__faq.close::after{
    transition: all .5s ease;
    display: none;
}
.c-accordion__answerBlock {
    display: none;/*非表示*/
}
@media screen and (max-width: 768px) {
    .c-accordion__faq::after{    
        right: 0px;
    }
    .c-accordion__faq::before {
        right: 0px;
    }
}

