@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/*　共通設定
----------------------------------------------- */
html,body{
	height:100%;
	background-color:white;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #505050;
    font-size: 18px;
    line-height: 1.65;
}

.body-wrapper {
    overflow-x: hidden;
}

figure {
    line-height: 0;
}

.container {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 15px;
}


/* SPのみ表示用 */

.pc,
.sp-show {
    display: none;
}

@media screen and (min-width: 769px) {
    /* PCのみ表示用 */
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    .sp-hide {
        display: none;
    }
    .sp-show {
        display: block;
    }
    body {
        font-size: 14px;
    }
}


/********************************************
***************** header ********************
********************************************/

header {
    background: #EFEFEF;
}

header h1 {
    text-align: center;
    font-size: 3.125rem;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
}


/********************************************
******************** main *******************
********************************************/

section.faq_item h2 {
    padding: 5px 15px;
    text-align: center;
    font-size: 1.375rem;
    font-weight: bold;
    /*background: #EFEFEF;*/
}

section.faq_item .container h3 {
    font-size: 1.2rem;
    font-weight: bold;
}

section.faq_item .container h3:not(:first-of-type) {
    margin-top: 32px;
}

section.faq_item ul li {
    margin-top: 20px;
}

section.faq_item ul li .question {
    position: relative;
    padding-left: 30px;
    color: #000064;
    cursor: pointer;
}

section.faq_item ul li .answer {
    position: relative;
    display: none;
    margin-top: 10px;
    padding-left: 30px;
}

section.faq_item ul li .question::before {
    content: 'Q';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 17px;
    color: #fff;
    background: #000064;
}

section.faq_item ul li .question p::after {
    content: '▼';
    display: inline-block;
    margin-left: 10px;
}

section.faq_item ul li .question.active p::after {
    transform: rotateX(180deg);
}

section.faq_item ul li .answer::before {
    content: 'A';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 1rem;
    line-height: 18px;
    color: #000064;
    background: #AFAFE1;
}

section.faq_item ul li .answer li {
    margin-left: 24px;
    list-style: disc;
}

section.faq_item ul li .answer figure {
    margin-top: 10px;
}

section.faq_item ul li .answer figure + p {
    margin-top: 10px;
}

@media screen and (max-width: 480px) {
    section.faq_item h2 {
        font-size: 1.125rem;
    }

    section.faq_item .container h3 {
        font-size: 1.1rem;
    }
    
    section.faq_item .container h3:not(:first-of-type) {
        margin-top: 3.2vw;
    }

    section.faq_item ul li .question::before,
    section.faq_item ul li .answer::before {
        top: 2px;
    }
    section.faq_item ul li .answer figure {
        text-align: center;
    }
}

/* 240828 add */
.c-link {
    text-decoration: underline;
}