@charset "UTF-8";
/* CSS Document */

.accordion-area li:not(:last-child) {
    margin-bottom: 30px;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    cursor: pointer;
    font-weight: bold;
    padding: 15px 20px;
    transition: all .5s ease;
    background-color: #dcdcdc;
    border-radius: 120px;
    color: #0071be;
}

.title::before, .title::after {
    position: absolute;
    content:'';
    top: 50%;
    transform: translateY(-50%);
}
.title::before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #fff;
    right: 20px;
}
.title::after{
    content: "+";
    font-size: 0.8rem;
    right: 23px;
}
.title.close::after{
	content: "ー";
    right: 21px;
}
#main .cassette .title p, #main .box > div {
    line-height: 1.8;
    padding-left: 50px;
    position: relative;
    padding-right: 30px;
}
#main .box  > div p {
    line-height: 1.8;
}
#main .title p::before, #main .box > div::before,
#main .title p::after, #main .box > div::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#main .title p::before, #main .box > div::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: 0;
}
#main .title p::before {
    background-color: #fff;
}
#main .box > div::before {
    background-color: #669cc0;
}
#main .title p::after, #main .box > div::after {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    left: 13px;
    font-size: 1.4rem;
}
#main .title p::after {
    content: "Q";
    color: #669cc0;
}
#main .box > div::after {
    content: "A";
    color: #fff;
}


/*アコーディオンで現れるエリア*/
.box {
    display: none;
    padding: 20px;
}
.box .disc_li > li:not(:last-child) {
    margin-bottom: 3px;
}


            /* 【スマートフォン用のスタイル記述】 */
            @media screen and (min-width: 760px) {
                .title::after{
                    right: 24px;
                }
            }

            /* 【タブレット用のスタイル記述】 */
            @media screen and (min-width: 960px) {
                .title {
                    padding: 20px;
                }
                #main .cassette .title p, #main .box > div {
                    padding-left: 80px;
                    padding-right: 40px;
                }
                #main .title p::before, #main .box > div::before {
                    width: 50px;
                    height: 50px;
                    left: 10px;
                }
                #main .title p::after, #main .box > div::after {
                    left: 28px;
                }
                .title::before {
                    width: 20px;
                    height: 20px;
                    right: 30px;
                }
                .title::after{
                    right: 36px;
                }
                .title.close::after{
                    right: 33px;
                }
            }